/**
* ------------------------------------------------------------------------
* Global defintions
* ------------------------------------------------------------------------
**/

html,
body {
    box-sizing: border-box;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin: 0 0 0 0;
    color: #3D4E6F;
    font-family: 'Open Sans';
    font-style: normal;
}

html{
    height: 100%;
}

body {
    position: relative;
    min-height: 100%;
}

body.stop-scrolling {
    height: auto !important;
}

.not-touch a:hover {
    color: rgba(61, 78, 111, 1);
    text-decoration: none;
    border-bottom: 1px solid rgba(61, 78, 111, 1);
    outline: none;
}

a.no-deco,
a.no-decoration {
    text-decoration: none;
    border-bottom: 0;
}

#assets-dropdown a,
#media-dropdown a,
#links-dropdown a,
#calculators-dropdown a,
.wiki{
    text-decoration: underline;
}

#assets-dropdown a,
#media-dropdown a,
#links-dropdown a,
#calculators-dropdown a {
    padding-bottom: 10px;
}

p,
li {
    font-size: 14px;
}

.chubby{
    font-weight: bold;
    color: rgb(65, 78, 108);
}

.text-decoration-link{
    text-decoration: underline !important;

}

#resources-wrapper a{
    text-decoration: none !important;
    border: 0 !important;
}

/**
* ------------------------------------------------------------------------
* Mozilla Firefox definitions
* ------------------------------------------------------------------------
**/

@-moz-document url-prefix() {
    .fixed-rightside-accordion .accordion-toggler {
    background: #606060 none repeat scroll 0 0;
    border-radius: 0 0 5px 5px;
    color: rgba(255, 255, 255, 1);
    display: block;
    left: -25px;
    margin-top: -26.5px !important;
    padding: 5px 9.5px !important;
    position: relative;
    transform: rotate(90deg);
    transform-origin: left bottom 0;
    }
    input.gsc-search-button.gsc-search-button-v2 {
    position: relative;
    margin: -82px 0 0 672px;
    }
}

@media (max-width: 1064px){
    @-moz-document url-prefix() {
        input.gsc-search-button.gsc-search-button-v2 {
        position: relative;
        margin: -72px 0 0 505px;
        }
    }
}

@media (max-width: 808px){
    .resp-search.active{
        background-color: rgba(0, 0, 0, 0.5);
        margin: 15px 0 20px 0 !important;
    }
}
}

/**
* ------------------------------------------------------------------------
* Global classes defintions
* ------------------------------------------------------------------------
**/

.inner-wrapper {
    margin-left: calc((100% - 1280px) / 2);
    max-width: 1280px;
}

*:not(.accordion).active {
    display: inherit !important;
}

*.hidden {
    display: none !important;
}

*.hidden.active {
    display: inline-block !important;
}

.middle-children {
    position: relative;
}

.middle {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.no-deco {
    text-decoration: none;
    border-bottom: 0;
}

.center {
    text-align: center;
    margin: 20px 0 20px 0;
}

.first-row-center {
    margin-top: 100px;
}

.last-row-center {
    margin-bottom: 80px;
}

.center a {
    text-decoration: none;
    border: 0;
}

.flexible-img {
    width: 100%;
    display: block;
}

.top-margin {
    margin-top: 20px !important;
}

#resources .dropdown .top-margin {
    display: block;
    margin-top: 10px !important;
}

.underline {
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(65, 78, 108, 1);
}

.uppercase {
    text-transform: uppercase;
}

/**
 * ------------------------------------------------------------------------
 * Grid defintions definitions
 * ------------------------------------------------------------------------
 **/

.columns-2 > div:first-of-type > .wrapper {
  padding: 0 10px 0 0;
}

.columns-2 > div:last-of-type > .wrapper {
  padding: 0 0 0 10px;
}


/**
 * ------------------------------------------------------------------------
 * Loading screen definitions
 * ------------------------------------------------------------------------
 **/

.blob {
    width: 2rem;
    height: 2rem;
    background: rgba(230, 230, 230, 0.85);
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 1rem);
    top: calc(50% - 1rem);
    box-shadow: 0 0 1rem rgba(255, 255, 255, 0.25);
}

.blob-2 {
    animation: animate-to-2 1.5s infinite;
}

.blob-3 {
    animation: animate-to-3 1.5s infinite;
}

.blob-1 {
    animation: animate-to-1 1.5s infinite;
}

.blob-4 {
    animation: animate-to-4 1.5s infinite;
}

.blob-0 {
    animation: animate-to-0 1.5s infinite;
}

.blob-5 {
    animation: animate-to-5 1.5s infinite;
}

@keyframes animate-to-2 {
    25%,
    75% {
        transform: translateX(-1.5rem) scale(0.75);
    }

    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes animate-to-3 {
    25%,
    75% {
        transform: translateX(1.5rem) scale(0.75);
    }

    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes animate-to-1 {
    25% {
        transform: translateX(-1.5rem) scale(0.75);
    }

    50%,
    75% {
        transform: translateX(-4.5rem) scale(0.6);
    }

    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes animate-to-4 {
    25% {
        transform: translateX(1.5rem) scale(0.75);
    }

    50%,
    75% {
        transform: translateX(4.5rem) scale(0.6);
    }

    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes animate-to-0 {
    25% {
        transform: translateX(-1.5rem) scale(0.75);
    }

    50% {
        transform: translateX(-4.5rem) scale(0.6);
    }

    75% {
        transform: translateX(-7.5rem) scale(0.5);
    }

    95% {
        transform: translateX(0rem) scale(1);
    }
}

@keyframes animate-to-5 {
    25% {
        transform: translateX(1.5rem) scale(0.75);
    }

    50% {
        transform: translateX(4.5rem) scale(0.6);
    }

    75% {
        transform: translateX(7.5rem) scale(0.5);
    }

    95% {
        transform: translateX(0rem) scale(1);
    }
}


/**
* ------------------------------------------------------------------------
* Tooltip defintions
* ------------------------------------------------------------------------
**/

#tooltip {
    background: #FFF;
    border: 1px solid #F0F0F0;
}

.popup-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 40px - 10%);
    padding: 20px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 1);
}

/**
* ------------------------------------------------------------------------
* Header defintions
* ------------------------------------------------------------------------
**/

.logo {
    width: 100%;
    height: auto;
    padding: 10px 0;
}

.toolbar-icon {
    display: block;
    width: 30px;
    height: auto;
    float: right;
    padding: 0 10px 0 0;
}

.not-touch a:hover .toolbar-icon {
    opacity: .8;
}

.searchicon {
    width: 20px;
    height: auto;
    padding: 0;
    margin: 0 8px;
    position: absolute;
}

label {
    font-size: 14px;
    margin: 0 0 10px 0;
}

input[type=text] {
    margin: 0 0 20px 0;
}

input[type=text].searchfield {
    background: rgba(150, 150, 150, 0.1);
    color: rgba(150, 150, 150, 1);
    font-size: 13px;
    border: none;
    position: relative;
    padding: 8px 8px 8px 36px;
    width: calc(100% - 44px);
}

.not-touch input:focus {
    outline: none;
}

textarea {
    margin: 0 0 20px 0;
    min-height: 110px;
}

input[type=checkbox],
input[type=radio] {
    float: left;
    margin: 4px 10px 0 0;
}

input[type=checkbox] + label,
input[type=radio] + label {
    margin: 0;
}

input[type=checkbox].failed,
input[type=radio].failed {
    border: none !important;
    width: auto !important;
    margin-right: 20px;
}

input[type=checkbox].failed + label,
input[type=radio].failed + label {
    border-right: 20px solid rgba(204, 0, 0, 1) !important;
}

input[type=checkbox].readonly,
input[type=radio].readonly {
    display: none;
}

input[type=checkbox].readonly + label:before,
input[type=radio].readonly + label:before {
    content: "\e013";
    color: rgba(204, 0, 0, 1);
    font-family: 'Glyphicons Halflings';
    display: inline-block;
    width: 20px;
}

header a,
.not-touch header a:link,
.not-touch header a:visited,
.not-touch header a:active,
.not-touch header a:focus {
    border-bottom: none;
}


/**
* ------------------------------------------------------------------------
* Navigation defintions
* ------------------------------------------------------------------------
**/

#nav-menu {
    position: relative;
    z-index: 10;
    background: #BDC3CE;
}

#nav-menu,
#nav-menu>div,
#nav-menu>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#nav-menu .dropdown {
    position: absolute;
    left: 0;
    width: calc(100% - 20px);
    padding: 10px;
}

#nav-menu .dropdown a,
.not-touch #nav-menu .dropdown a:link,
.not-touch #nav-menu .dropdown a:visited,
.not-touch #nav-menu .dropdown a:active,
.not-touch #nav-menu .dropdown a:focus {
    color: #FFF;
    border: none;
}

#nav-menu .dropdown a:after {
    content: '';
    display: block;
    border-bottom: 1px solid #BDC3CE;
    width: calc(100% - 20px);
    margin: 5px 0 0 0;
}

.not-touch #nav-menu .dropdown a:hover {
    border: none;
    color: #BDC3CE;
}

#nav-menu div.last-row a.active:after,
#nav-menu div.last-row~div a.active:after {
    border-bottom: 1px solid #BDC3CE;
}

#nav-menu .dropdown .dropdown .no-children {
    width: 100% !important;
}

#nav-menu .dropdown .dropdown a:after {
    border: none;
    width: 0;
}

#nav-menu .dropdown .dropdown div:first-of-type {
    /*padding: 10px 0 0 0;*/
}

#nav-menu .dropdown .dropdown {
    position: relative;
    display: none;
    padding: 0;
    width: 100%;
    z-index: 11;
}

#nav-menu .dropdown a.toggler.active,
.not-touch #nav-menu .dropdown .dropdown a:hover {
    color: #BDC3CE;
}

#nav-menu .dropdown .dropdown a:hover:before {
    margin: 0px 0 0 -14px;
}

#nav-menu .top-level>div a,
#nav-menu .top-level>div a:link,
#nav-menu .top-level>div a:visited,
#nav-menu .top-level>div a:active,
#nav-menu .top-level>div a:focus {
    cursor: pointer;
    display: block;
    width: 100%;
    background: #BDC3CE;
    padding: 10px !important;
    border: none;
    text-align: left;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

#nav-menu .top-level>div a:hover,
#nav-menu .top-level>div a.toggler.active,
#nav-menu .dropdown {
    background: #3F4F6E;
    color: #FFF;
    border: none;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

#nav-menu .top-level>div div a,
#nav-menu .top-level>div div a:link,
#nav-menu .top-level>div div a:visited,
#nav-menu .top-level>div div a:active,
#nav-menu .top-level>div div a:focus {
    background: #3F4F6E;
    text-align: left;
    padding: 10px 0 10px 10px;
}

#nav-menu .top-level>.dropdown .dropdown div div.no-children a,
#nav-menu .top-level>.dropdown .dropdown div div.no-children a:link,
#nav-menu .top-level>.dropdown .dropdown div div.no-children a:visited,
#nav-menu .top-level>.dropdown .dropdown div div.no-children a:active,
#nav-menu .top-level>.dropdown .dropdown div div.no-children a:focus {
    font-size: 12px;
    line-height: 16px;
    display: block;
    padding: 0 0 0 10px;
}

#nav-menu .top-level>.dropdown a.toggler:hover,
#nav-menu .top-level>.dropdown a.toggler.active {
    color: #BDC3CE;
}

div.top-level.xl-colspan-2.m-colspan-12{
    width: 201px;
}

div.top-level.xl-colspan-2.m-colspan-12:last-child{
    width: 200px !important;
}

@media (max-width: 1064px) {
    div.top-level.xl-colspan-2.m-colspan-12{
    width: 150px;
}

div.top-level.xl-colspan-2.m-colspan-12:last-child{
    width: 148px !important;
    }
}

@media (max-width: 808px) {
    div.top-level.xl-colspan-2.m-colspan-12:last-child{
        width: 100% !important;
    }
}

/**
* ------------------------------------------------------------------------
* Navigation defintions overflow
* ------------------------------------------------------------------------
**/

#nav-menu .overflow a {
    white-space: nowrap;
    overflow: hidden;
    max-height: 22px;
    display: block;
}

#nav-menu .dropdown .dropdown .overflow a {
    max-height: 17px;
}

#nav-menu .overflow {
    position: relative;
}

#nav-menu .overflow a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 42px;
    width: 25%;
    background-image: -webkit-gradient( linear, left top, right bottom, from(rgba(63, 79, 110, 0)), to(rgba(63, 79, 110, 1)), color-stop(1, #BDC3CE));
}

#nav-menu .dropdown .dropdown .overflow a:after {
    height: 37px;
}

#nav-menu .dropdown .no-children {
    width: calc(100% + 20px);
}

#nav-menu .top-level>.overflow a:after {
    background-image: none;
}

@media screen and (max-width:680px) {
    nav li:not(:first-child) {
        display: none;
    }

    nav li.icon {
        float: right;
        display: inline-block;
    }

    nav.responsive {
        position: relative;
    }

    nav.responsive li.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    nav.responsive li {
        float: none;
        display: inline;
    }

    nav.responsive li a {
        display: block;
        text-align: left;
    }
}

nav .dropdown {
    display: none;
}

nav .dropdown.active {
    display: block;
}

nav button {
    padding: 0;
    color: #3D4E6F;
    background-color: rgba(255, 255, 255, 0);
}

.not-touch nav button:hover {
    color: rgba(255, 255, 255, 1);
    background-color: transparent;
}

/**
 * ------------------------------------------------------------------------
 * Fixed side accordeon definitions
 * ------------------------------------------------------------------------
 **/

.firefox #mikogo-form {
    right: -352px;
    height: 163px;
    border-color: #606060;
}
.fixed-rightside-accordion {
    position: fixed;
    right: 0;
    z-index: 89;
}

#mikogo-form {
    right: -325px;
}

.iexplorer #mikogo-form{
    right: -355px;
}

.safari #mikogo-form{
    right: -357px;
}
.iphone-ipad #mikogo-form {
    /*right: -335px !important;*/
    right: -335px;
}

@-moz-document url-prefix() {
    #mikogo-form {
    right: -352px;
    }

    .fixed-rightside-accordion .accordion-toggler {
    background: #606060 none repeat scroll 0 0;
    border-radius: 0 0 5px 5px;
    color: rgba(255, 255, 255, 1);
    display: block;
    left: -25px;
    margin-top: -26.5px;
    padding: 5px 10.5px !important;
    position: relative;
    transform: rotate(90deg);
    transform-origin: left bottom 0;
    }
}

.fixed-rightside-accordion .accordion-toggler {
    position: relative;
    left: -25px;
    display: block;
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
	transform-origin: left bottom 0;
    background: #606060;
    border-radius: 0 0 5px 5px;
    padding: 5px 10px;
    color: rgba(255, 255, 255, 1);
    margin-top: -26px;
}

#mikogo-form .accordion-toggler {
    width: 167px;
}

.iphone-ipad #mikogo-form .accordion-toggler {
    width: 146px !important;
}
/**
* ------------------------------------------------------------------------
* Videos definitions
* ------------------------------------------------------------------------
**/

iframe.youtube-video {
    width: 100%;
    min-height: 300px;
    border: 1px solid #000;
}

/**
* ------------------------------------------------------------------------
* Image definitions
* ------------------------------------------------------------------------
**/

.portrait-mueller{
    margin-top: 25px;
}

@media (max-width: 808px){
    .portrait-mueller{
        width: 100% !important;
    }
}


/**
* ------------------------------------------------------------------------
* Partner definitions
* ------------------------------------------------------------------------
**/
/*
.partner-box{
  margin: 0 60px;
  padding: 20px 0;
  border: 1px solid #000;
  border-radius: 10px;
  min-height: 60px;
}
*/

/**
* ------------------------------------------------------------------------
* Slider definitions
* ------------------------------------------------------------------------
**/

.slider-elements,
.slider-elements figure,
.slider-controls {
    margin: 0;
    padding: 0;
}

.slider-elements:after {
    content: ".";
    display: block;
    height: .1px;
    clear: both;
    visibility: hidden;
    font-size: 0;
    overflow: hidden;
}

.css-slider {
    overflow-x: hidden;
}

.slider-elements {
    list-style: none;
    position: relative;
    left: 0;
    width: 500%;
    -webkit-transition: left .8s ease-in-out;
    -moz-transition: left .8s ease-in-out;
    -o-transition: left .8s ease-in-out;
    transition: left .8s ease-in-out;
}

.slider-elements>li {
    float: left;
    width: 20%;
    position: relative;
    left: 0;
}

#slide02:checked~.slider-elements {
    left: -100%;
}

#slide03:checked~.slider-elements {
    left: -200%;
}

#slide04:checked~.slider-elements {
    left: -300%;
}

#slide05:checked~.slider-elements {
    left: -400%;
}

.slider-elements figcaption {
    display: block;
    color: #3D4E6F;
    position: absolute;
    left: 0;
    bottom: 2em;
    padding: .4em;
    background: rgba(255, 255, 255, .8);
}

.slider-elements img {
    width: 100%;
    height: auto;
}

.css-slider input {
    position: absolute;
    left: -99999px;
}

.slider-controls {
    text-align: right;
    position: relative;
    bottom: 40px;
    right: 40px;
}

.slider-controls li {
    display: inline-block;
    margin: 0 5px 0 0;
}

.slider-controls li:last-of-type {
    margin: 0;
}

.slider-controls label {
    width: 11px;
    height: 11px;
    line-height: 13px;
    text-align: center;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(150, 150, 150, 0.8);
    color: rgba(61, 78, 111, 1);
}

.not-touch .slider-controls label:hover,
#slide01:checked~.slider-controls label[for="slide01"],
#slide02:checked~.slider-controls label[for="slide02"],
#slide03:checked~.slider-controls label[for="slide03"],
#slide04:checked~.slider-controls label[for="slide04"],
#slide05:checked~.slider-controls label[for="slide05"] {
    background: rgba(61, 78, 111, 1);
    color: rgba(61, 78, 111, 1);
}

.css-slider figcaption {
    text-align: left;
    min-width: 300px;
}

@media(max-width: 521px){
    .css-slider figcaption{
        min-width: 220px;
    }
}

.css-slider figcaption strong {
    text-transform: uppercase;
    color: rgba(61, 78, 111, 1);
    padding: 0;
    margin-bottom: 5px;
}

.css-slider figcaption p {
    color: rgba(61, 78, 111, 1);
    padding: 0;
    margin: 0;
}


/**
* ------------------------------------------------------------------------
* Side menu definitions - private customers
* ------------------------------------------------------------------------
**/

#side-menu ul {
    list-style: none;
}

#side-menu a {
    text-decoration: none;
    display: block;
    border-bottom: 0;
}

#side-menu li {
    position: relative;
}

#side-menu ul ul {
    position: relative;
}

div#side-menu ul ul {
    display: none;
}

.not-touch div#side-menu ul li:hover ul ul {
    display: none;
}

.not-touch div#side-menu ul li:hover ul {
    display: block;
}

.not-touch div#side-menu ul ul li:hover ul {
    display: block;
}

.head-menu {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    color: rgba(61, 78, 111, 1);
    font-size: 15px;
    text-transform: uppercase;
}

h5 {
    font-style: italic;
}

.customer_dropdown_icon {
    margin: 0 5px 5px 0;
    float: left;
    width: 20px
}

.customer_dropdown_head {
    color: #3D4E6F;
    font-size: 16px;
    border-bottom: 1px solid #000;
    padding: 0 0 5px 0;
    text-decoration: none;
}


/**
* ------------------------------------------------------------------------
* Article defintions
* ------------------------------------------------------------------------
**/

.main {
    color: rgba(61, 78, 111, 1);
    margin: 30px 0 0 0;
    border-bottom: 1px solid #3D4E6F;
}

.head .accordion {
    cursor: pointer;
}

.head .accordion:before {
    content: '';
    background: url(../img/icons/plus.png) no-repeat;
    background-size: 24px;
    background-position: center bottom;
    padding: 12px;
    margin: 0 10px 0 0;
    display: inline-block;
    position: relative;
    top: 2px;
}

.head .accordion.active:before {
    background: url(../img/icons/minus.png) no-repeat;
    background-size: 24px;
    background-position: center bottom;
}

.accordion-list a{
    font-size: 13px !important;
}

.head {
    margin: 20px 0;
    border-bottom: 1px solid #3D4E6F;
}

.head:after {
    content: '';
    margin: 0 0 15px 0;
    display: block;
}

.head * {
    text-transform: uppercase;
    color: rgba(61, 78, 111, 1);
    line-height: 24px;
    margin: 0;
}

@media (max-width: 1064px){
    .head h2,
    h2{
        font-size: 20px !important;
    }
    .column-head {
        font-size: 13px !important;
    }
}

.ubersichtslink {
    font-size: 13px;
    color: #3D4E6F;
    position: absolute;
    top: 680px;
    right: 0;
}

.column-head {
    font-size: 15px;
    font-weight: lighter;
    margin: 5px 0 30px 0;
    padding: 0;
}

@media (max-width: 520px){
    img.column-pic{
        margin-top: 20px;
    }
    .head h2,
    h2{
        font-size: 15px !important;
        font-weight: bold;
    }
}

#checklist {
    width: 100%;
}

.checklist-item {
    width: 100%;
    border-bottom: 1px dashed #3D4E6F;
}

div.checklist-item:last-of-type {
    border: 0;
}

.checklist-item:after {
    content: '';
    display: block;
    clear: both;
}

.checklist-item p {
    color: #000;
    font-size: 14px;
    padding: 0 0 5px 0;
    text-decoration: none;
    width: calc(100% - 20px);
    margin: 10px 0 0 0;
    float: left;
}

div.checklist-item:first-of-type p {
    margin: 0;
}

.checklist-icon {
    margin: 12px 5px 5px 0;
    float: left;
    width: 15px;
}

div.checklist-item:first-of-type .checklist-icon {
    margin: 2px 5px 5px 0;
}

.checklist-link {
    text-decoration: none;
    border-bottom: 0;
}

#resources {
    margin: 20px 0;
    padding: 0;
    list-style-type: none;
}

#resources > li {
    border-bottom: 1px solid #3D4E6F;
    background: rgba(150, 150, 150, .1);
}

#resources > li > a {
    border-bottom: 1px solid #3D4E6F;
    display: block;
    line-height: 25px;
    padding: 0 10px 5px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    width: calc(100% - 20px);
}

#resources > li > a.active {
    border-bottom: 1px solid #3D4E6F;
}

#resources > li > a:before {
    position: relative;
    top: 9px;
    content: '';
    background: url(../img/icons/plus.png) no-repeat;
    background-size: 20px 20px;
    width: 25px;
    height: 25px;
    display: inline-block;
}

#resources > li > a.active:before {
    background: url(../img/icons/minus.png) no-repeat;
    background-size: 20px 20px;
    width: 25px;
    height: 25px;
}

#resources > li:last-of-type {
    border: none;
}

#resources .list li {
    margin: 0 0 10px 0;
}

#resources .list {
    border-bottom: 1px dotted #3D4E6F;
}

#resources .list p {
    margin-top: 0;
}

#resources ul.list:last-of-type {
    border: none;
}

#resources h4 {
    margin: 10px 0;
}

#resources .dropdown {
    background: rgba(255, 255, 255, 1);
    padding: 0 10px;
    width: calc(100% - 20px);
}

.resource-pdf:before {
    position: relative;
    top: 4px;
    content: '';
    background: url(../img/icons/pdf.png) no-repeat;
    background-size: 15px 19px;
    display: inline-block;
    width: 25px;
    height: 19px;
    margin: 0 0 0 -25px;
}

.resource-pdf {
    padding: 0 0 0 25px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 1);
}

.wiki:before {
    position: relative;
    top: 8px;
    content: '';
    background: url(../img/icons/wiki.png) no-repeat;
    background-size: 19px 19px;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 0 0 0 -25px;
}

.wiki {
    padding: 0 0 0 25px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 1);
}

.not-touch #resources .dropdown a:hover {
    opacity: .8;
}

#resources .dropdown p {
    font-size: 14px;
}

#resources #media-dropdown p:last-of-type {
    margin-bottom: 1px;
}

.glyphicon-label + .glyphicon {
    font-size: 12px;
}

/**
* ------------------------------------------------------------------------
* Teaser defintions
* ------------------------------------------------------------------------
**/

.teaser-wrapper .column-pic {
    width: 100%;
}

div>div.teaser-wrapper .wrapper {
    padding: 0 20px 0 0;
}

.teaser-wrapper img {
    border: 1px solid rgba(230, 230, 230, 1);
}

#insurance-img {
    margin: 20px 0 0 0;
}


/**
* ------------------------------------------------------------------------
* View options definitions
* ------------------------------------------------------------------------
**/


/**
* ------------------------------------------------------------------------
* Company
* ------------------------------------------------------------------------
**/

.company-subhead:before {
    content: url(../img/link-arrow-dark.png);
    margin-right: 5px;
}


/**
* ------------------------------------------------------------------------
* Form definitions
* ------------------------------------------------------------------------
**/

form {
    height: 100%;
}

::-webkit-input-placeholder {
    color: rgba(150, 150, 150, 0.8);
}

:-moz-placeholder {
    color: rgba(150, 150, 150, 0.8);
}

::-moz-placeholder {
    color: rgba(150, 150, 150, 0.8);
}

:-ms-input-placeholder {
    color: rgba(150, 150, 150, 0.8);
}

::-ms-input-placeholder {
    color: rgba(150, 150, 150, 0.8);
}

input[type=radio].active {
  display: inline-block !important;
}

input[type=checkbox],
input[type=radio] {
  float: left;
  margin: 4px 10px 0 0;
}

input[type=checkbox].failed,
input[type=radio].failed {
  border: none !important;
  width: auto !important;
  margin-right: 20px;
}

input[type=checkbox].failed + label,
input[type=radio].failed + label{
  border-right: 20px solid rgba(189, 195, 206, 1) !important;
}

input[type=checkbox].readonly,
input[type=radio].readonly {
  display: none;
}

input[type=checkbox].readonly + label:before,
input[type=radio].readonly + label:before {
  content: "\e013";
  color: rgba(204, 0, 0, 1);
  font-family: 'Glyphicons Halflings';
  display: inline-block;
  width: 20px;
}

/**
* ------------------------------------------------------------------------
* Aside defintions
* ------------------------------------------------------------------------
**/


/**
 * ------------------------------------------------------------------------
 * Team definitions
 * ------------------------------------------------------------------------
 **/

.team-head {
    font-weight: bold;
    font-size: 25px;
}

.container_qualifications {}

.subhead_qualifications {
    font-weight: bold;
    border-bottom: 1px solid #3D4E6F;
}

.head_qualifications {
    font-weight: bold;
    font-size: 25px;
}

/**
 * ------------------------------------------------------------------------
 * Insurances definitions
 * ------------------------------------------------------------------------
 **/

.accordion-list .accordion {
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    color: rgba(61, 78, 111, 1);
    font-size: 15px;
    margin: 0 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    cursor: pointer;
}

.not-touch .accordion-list .accordion:hover {
    border-bottom: 1px solid rgba(61, 78, 111, 1);
}

.accordion-list .dropdown {
    margin: 0 0 20px 0;
    padding: 0;
    list-style-type: none;
}

/**
* ------------------------------------------------------------------------
* Footer definitions
* ------------------------------------------------------------------------
**/

footer{
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
}

.footer {
    background-color: #3D4E6F !important;
    color: #ffffff;
    width: 100%;
    min-height: 200px;
}

.footer-icons {
    width: 20px;
    margin: 0;
    padding: 0;
}

.footer-icons-head {
    width: 20px;
    padding: 0;
    margin: 20px 0 0 0;
}

.footer-head {
    font-weight: bold;
    padding: 0;
    margin: 20px 0 0 0;
}

.footer-head-right {
    margin: 20px 0 5px 0;
    padding: 0;
}

.footer-sub {
    font-size: 14px;
    padding: 0;
    margin: 0;
}

.copyright {
    font-size: 10px;
    margin-top: 50px;
}

.footer-sub a {
    text-decoration: none;
    color: #ffffff;
}

.footer-logobar {
    width: 615px;
    /*background-color: #ffffff;*/
    white-space: nowrap;
    overflow: hidden;
}

.footer-logobar .partners,
.footer-logobar-mobile .partners  {
    height: 70px;
}

.footer-imprint {
    text-decoration: none;
    color: #ffffff !important;
    font-size: 12px;
}

.partners {
    margin: 0;
    padding: 0;
    width: auto;
}

.footer-mail a {
    text-decoration: none;
    color: #000 !important;
}

.footer-main {
    display: block;
}

.footer-mobile {
    display: none;
}

.footer-logobar-mobile{
    margin: 0 40px;
}

@media (max-width: 709px){
    .footer-logobar-mobile-1{
        width: 155px;
    }
    .footer-logobar-mobile-2{
        width: 138px;
    }
    .footer-logobar-mobile-3{
        width: 110px;
    }
    .footer-logobar-mobile-4{
        width: 80px;
    }
}

@media (max-width: 600px){
    .footer-logobar-mobile-1{
        width: 130px;
    }
    .footer-logobar-mobile-2{
        width: 118px;
    }
    .footer-logobar-mobile-3{
        width: 93px;
    }
    .footer-logobar-mobile-4{
        width: 67px;
    }
}

@media (max-width: 515px){
    .footer-logobar-mobile-1{
        width: 90px;
    }
    .footer-logobar-mobile-2{
        width: 80px;
    }
    .footer-logobar-mobile-3{
        width: 64px;
    }
    .footer-logobar-mobile-4{
        width: 46px;
    }
    .second-footer-table{
        padding-left: 20px !important;
    }
}
/*
@media (max-width: 400px){
    .footer-logobar-mobile a:after{
    content: '\A';
    white-space: pre;
    }
}
*/
@media (max-width: 370px){
    .footer-logobar-mobile-1{
        width: 80px;
    }
    .footer-logobar-mobile-2{
        width: 71px;
    }
    .footer-logobar-mobile-3{
        width: 56px;
    }
    .footer-logobar-mobile-4{
        width: 41px;
    }
    .copyright-mobile{
        font-size: 9px !important;
    }
    .second-footer-table{
        padding-left: 0 !important;
    }
}

@media (max-width: 340px){
    .footer-logobar-mobile-1{
        width: 70px;
    }
    .footer-logobar-mobile-2{
        width: 63px;
    }
    .footer-logobar-mobile-3{
        width: 51px;
    }
    .footer-logobar-mobile-4{
        width: 36px;
    }
}

@media only screen and (max-width: 1064px) {
   .footer-main {
        display: none;
    }

    .footer-mobile {
        display: block;
        background-color: #3D4E6F !important;
        color: #ffffff;
    }

    .footer-mobile li {
        list-style-type: none;
    }

    .footer-mobile a {
        color: #ffffff;
        font-size: 14px;
        list-style-type: none;
    }

    .copyright-mobile {
        margin-left: 40px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 808px) {
    .footer-main {
        display: none;
    }

    .footer-mobile {
        display: block;
        background-color: #3D4E6F !important;
        color: #ffffff;
    }

    .footer-mobile li {
        list-style-type: none;
    }

    .footer-mobile a {
        color: #ffffff;
        font-size: 14px;
        list-style-type: none;
    }

    .copyright-mobile {
        margin-left: 40px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 520px) {
    .footer-main {
        display: none;
    }

    .footer-mobile {
        display: block;
        background-color: #3D4E6F !important;
        color: #ffffff;
    }

    .footer-mobile li {
        list-style-type: none;
    }

    .footer-mobile a {
        color: #ffffff;
        font-size: 12px;
        list-style-type: none;
    }

    .copyright-mobile {
        margin-left: 40px;
        font-size: 12px;
    }
}


/**
* ------------------------------------------------------------------------
* Location definitions
* ------------------------------------------------------------------------
**/

.location-map{
    width: 100%;
}


/**
* ------------------------------------------------------------------------
* Logos
* ------------------------------------------------------------------------
**/


.logo-bundensministerium{
    width: 40%;
    border: 1px solid #000;
    padding: 15px;
}

.bundesministerium{
    text-align: center;
}

.bundesministerium a{
    text-decoration: none;
    border: 0;
}

/**
* ------------------------------------------------------------------------
* RSS definitions
* ------------------------------------------------------------------------
**/

.rss-list{
    list-style-type: none;
}

.rss-item{
    font-size: smaller;
    margin: 0 0;
}

.rss-host{
    font-size: 12px;
}

.even{
    background-color: #eee;
    padding: 15px;
}

.odd{
    padding: 15px;
}

#tax_news article div.inner-wrapper div.xl-colspan-12 ul,
#law_guide article div.inner-wrapper div.xl-colspan-12 ul{
    padding-left: 0;
}

ul.rss-list{
    font-size: 14px;
}

.current_tips h3 {
    size: 24px;
    color: #3D4E6F;
    font-weight: bold;
}

.current_tips ul{
    list-style: none;
    padding-left: 0;
}

.current_tips h4 {
    margin-bottom: 10px;
}

.current_tips p{
    margin-bottom: 20px;
}

.current_news ul{
    padding-left: 0;
}

.current_news ul li{
    list-style: none;
    padding: 10px 5px;
}

.news_detail{
    list-style: none;
}

.current_news ul li:nth-child(even){
    background-color: #FFF !important;
}

.current_news ul li:nth-child(odd){
    background-color: #F0F0F0 !important;
}

.current_news ul li:nth-child(even) a{
    text-decoration: underline;
}

.current_news ul li:nth-child(odd) a{
    text-decoration: underline;
}

.news_arhive_drop{
    background-color: #fff;
    padding: 15px;
    margin: 10px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.news-archive ul{
    list-style: none;
    padding: 15px;
}

.news-archive ul li{
    padding-bottom: 10px;
    cursor: pointer;
}

#contact-disclaimer a {
    text-decoration: underline;
}

.tab-title{
    padding-left: 20px;
}

.flaps-content-nth{
    border-top: 1px solid #000;
}

@media (max-width: 1064px){
    .tab-title{
        padding-left: 0 !important;
    }
}

/**
* ------------------------------------------------------------------------
* Media queries
* ------------------------------------------------------------------------
**/

.hidden-xl {
    display: none;
}

@media (min-width: 1320px) {}

@media (max-width: 1064px) {}

@media (min-width: 809px) {
    #nav-menu .top-level>div a.hidden {
        display: block !important;
    }

    #nav-menu .top-level>div.dropdown a.hidden {
        display: none !important;
    }

    #nav-menu .top-level>div a.active.hidden {
        display: block !important;
    }

    #nav-menu .dropdown {
        background: rgba(68, 68, 68, 1);
        padding: 0;
        width: calc(100% / 3);
        left: inherit;
    }

    #nav-menu .top-level>div a.toggler,
    #nav-menu .top-level>div a.toggler:link,
    #nav-menu .top-level>div a.toggler:visited,
    #nav-menu .top-level>div a.toggler:active,
    #nav-menu .top-level>div a.toggler:focus {
        padding: 10px 0;
    }

    #nav-menu .top-level>div.dropdown a,
    #nav-menu .top-level>div.dropdown a:link,
    #nav-menu .top-level>div.dropdown a:visited,
    #nav-menu .top-level>div.dropdown a:active,
    #nav-menu .top-level>div.dropdown a:focus,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:link,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:visited,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:active,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:focus {
        background: rgba(68, 68, 68, 1);
        color: rgba(255, 255, 255, 1);
        width: calc(100% - 60px);
        border-bottom: 1px solid #FFF;
        padding: 10px 30px 10px 10px !important;
        text-align: left;
        font-size: 14px;
        line-height: 22px;
    }

    div#private_customer-dropdown.dropdown.active,
    div#business_customer-dropdown.dropdown.active{
        width: 400px;
    }

    div#service_center-dropdown.dropdown.active{
        width: 220px;
    }

    div#about_us-dropdown.dropdown.active{
        width: 201px;
    }

    div#news-dropdown.dropdown.active{
        width: 201px;
    }

    @media (max-width: 1064px){
    #nav-menu .top-level>div.dropdown a,
    #nav-menu .top-level>div.dropdown a:link,
    #nav-menu .top-level>div.dropdown a:visited,
    #nav-menu .top-level>div.dropdown a:active,
    #nav-menu .top-level>div.dropdown a:focus,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:link,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:visited,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:active,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:focus {
            font-size: 11.4px !important;
            line-height: 16px !important;
        }

    div#private_customer-dropdown.dropdown.active,
    div#business_customer-dropdown.dropdown.active{
            width: 350px;
        }

        div#service_center-dropdown.dropdown.active{
            width: 168px;
        }

    div#about_us-dropdown.dropdown.active{
            width: 150px;
        }

    div#news-dropdown.dropdown.active{
            width: 150px;
        }
    }

    #nav-menu .top-level>div.dropdown a,
    #nav-menu .top-level>div.dropdown a.toggler,
    .not-touch #nav-menu .dropdown a:link,
    .not-touch #nav-menu .dropdown a:visited,
    .not-touch #nav-menu .dropdown a:active,
    .not-touch #nav-menu .dropdown a:focus,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:link,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:visited,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:active,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:focus {
        padding: 10px 20px;
        width: calc(100% - 40px);
        font-size: 14px;
    }

    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:hover,
    #nav-menu .top-level>.dropdown div div.no-children a:hover {
        color: #BDC3CE;
    }

    #nav-menu .dropdown a:after {
        content: '\e258';
        font-family: 'Glyphicons Halflings';
        float: right;
        position: relative;
        width: 0;
        left: -16px;
        top: -5px;
    }

    #nav-menu .dropdown a.toggler.active:after {
        content: '\e014';
        font-family: 'Glyphicons Halflings';
        float: right;
    }

    #nav-menu .top-level>div.dropdown a:after,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:after {
        display: inline;
    }

    #nav-menu .top-level>.dropdown .no-children a:after {
        content: '';
    }

    #nav-menu div[class*=top-level]:last-of-type a.toggler,
    #nav-menu .top-level>div.dropdown>div[class*=grid]:last-of-type>div[class*=has-children]:last-of-type a.toggler,
    #nav-menu .top-level>div.dropdown>div[class*=grid]:last-of-type>div[class*=no-children]:last-of-type a,
    #nav-menu .top-level>div.dropdown div.dropdown>div[class*=grid]:last-of-type>div[class*=no-children]:last-of-type a {
        border-bottom: none;
    }

    #nav-menu div[class*=top-level]:last-of-type a.toggler.active,
    #nav-menu .top-level>div.dropdown>div[class*=grid]:last-of-type>div[class*=has-children]:last-of-type a.toggler.active {
        border-bottom: 1px solid #FFF;
    }
}

@media (max-width: 808px) {
    #___gcse_0 {
        display: none;
    }
    .resp-search.active > #___gcse_0 {
        display: block;
    }

    .hidden-m {
        display: none;
    }

    .shown-m {
        display: block;
    }

    div#private-customer-teasers>div:nth-child(odd) .wrapper,
    div#business-customer-teasers>div:nth-child(odd) .wrapper {
        padding: 0 10px 0 0;
    }

    div#private-customer-teasers>div:nth-child(even) .wrapper,
    div#business-customer-teasers>div:nth-child(even) .wrapper {
        padding: 0 0 0 10px;
    }

    .teaser-wrapper {
        margin: 0 0 10px 0;
    }

    nav.inner-wrapper,
    #slider.inner-wrapper {
	width: 100%;
	max-width: inherit;
	margin: 0;
    }

    nav.inner-wrapper {
	width: 100%;
	max-width: inherit;
	margin: 0;
    }

    #nav-menu,
    #nav-menu .dropdown {
        background: rgba(68, 68, 68, 1);
    }

    #nav-menu .top-level>div a.toggler,
    #nav-menu .top-level>div a.toggler:link,
    #nav-menu .top-level>div a.toggler:visited,
    #nav-menu .top-level>div a.toggler:active,
    #nav-menu .top-level>div a.toggler:focus,
    #nav-menu .top-level>div.dropdown a,
    #nav-menu .top-level>div.dropdown a:link,
    #nav-menu .top-level>div.dropdown a:visited,
    #nav-menu .top-level>div.dropdown a:active,
    #nav-menu .top-level>div.dropdown a:focus,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:link,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:visited,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:active,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:focus {
        background: rgba(68, 68, 68, 1);
        color: rgba(255, 255, 255, 1);
        width: calc(100% - 40px);
        border-bottom: 1px solid #FFF;
        text-align: left;
        padding: 10px 30px 10px 10px !important;
        font-size: 12px;
        line-height: 22px;
    }
    #nav-menu .dropdown {
        padding: 0 20px 0 0;
    }

    #nav-menu .top-level>div.dropdown a,
    #nav-menu .top-level>div.dropdown a.toggler,
    .not-touch #nav-menu .dropdown a:link,
    .not-touch #nav-menu .dropdown a:visited,
    .not-touch #nav-menu .dropdown a:active,
    .not-touch #nav-menu .dropdown a:focus,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:link,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:visited,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:active,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:focus {
        width: calc(100% - 20px);
	background: rgba(68, 68, 68, 1);
    }

    #nav-menu .top-level>div a.toggler {
        background: #FFF;
    }

    #nav-menu .top-level>div:hover a.toggler {
        color: #BDC3CE;
    }

    #nav-menu .top-level>.dropdown:hover a.toggler {
        color: #FFFFFF;
    }

    #nav-menu .top-level>.dropdown a.toggler:hover,
    #nav-menu .top-level>div.dropdown a:hover,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:hover {
        color: #BDC3CE;
    }

    #nav-menu .top-level>div a.toggler:after {
        content: '\e258';
        font-family: 'Glyphicons Halflings';
        float: right;
    }

    #nav-menu .dropdown a:after {
        position: relative;
        width: 0;
        left: -16px;
        top: -5px;
    }

    #nav-menu .top-level>div a.toggler.active:after {
        content: '\e014';
        font-family: 'Glyphicons Halflings';
        float: right;
    }

    #nav-menu .top-level > div a.toggler.active,
    #nav-menu .top-level > div a.toggler.active:link,
    #nav-menu .top-level > div a.toggler.active:visited,
    #nav-menu .top-level > div a.toggler.active:active,
    #nav-menu .top-level > div a.toggler.active:focus,
    #nav-menu .top-level > div.dropdown a.active,
    #nav-menu .top-level > div.dropdown a.active:link,
    #nav-menu .top-level > div.dropdown a.active:visited,
    #nav-menu .top-level > div.dropdown a.active:active,
    #nav-menu .top-level > div.dropdown a.active:focus,
    #nav-menu .top-level > .dropdown .dropdown div div.no-children a.active,
    #nav-menu .top-level > .dropdown .dropdown div div.no-children a.active:link,
    #nav-menu .top-level > .dropdown .dropdown div div.no-children a.active:visited,
    #nav-menu .top-level > .dropdown .dropdown div div.no-children a.active:active,
    #nav-menu .top-level > .dropdown .dropdown div div.no-children a.active:focus{
	color: #BDC3CE;
    }

    #nav-menu .top-level>div.dropdown a:after,
    #nav-menu .top-level>.dropdown .dropdown div div.no-children a:after {
        display: inline;
    }

    #nav-menu div[class*=top-level]:last-of-type a.toggler,
    #nav-menu .top-level>div.dropdown>div[class*=grid]:last-of-type>div[class*=has-children]:last-of-type a.toggler,
    #nav-menu .top-level>div.dropdown>div[class*=grid]:last-of-type>div[class*=no-children]:last-of-type a,
    #nav-menu .top-level>div.dropdown div.dropdown>div[class*=grid]:last-of-type>div[class*=no-children]:last-of-type a {
        border-bottom: none;
    }

    #nav-menu div[class*=top-level]:last-of-type a.toggler.active,
    #nav-menu .top-level>div.dropdown>div[class*=grid]:last-of-type>div[class*=has-children]:last-of-type a.toggler.active {
        border-bottom: 1px solid #FFF;
    }

    .ccs-slider figcaption>* {
        font-size: 12px;
    }

    .column-head {
        font-size: 12px !important;
        font-weight: lighter !important;
        margin: 5px 0 20px 0;
        padding: 0;
    }

    .columns-2 > div:first-of-type > .wrapper,
    .columns-2 > div:last-of-type > .wrapper {
	padding: 0;
    }

    .columns-2 > div:last-of-type > :not(#resources-wrapper).wrapper{
	margin-top: 20px;
    }

    #resources {
	margin: 0;
    }

    #insurance-img {
	margin: 0;
    }

    .columns-2 > *:first-of-type > .wrapper input:last-of-type {
	margin-bottom: 0 !important;
    }

   .formgroup .columns-2 > *:last-of-type > .wrapper {
	margin-top: 0 !important;
    }

    .center img {
        width: 80px;
    }

 /*

    .partner-box{
        padding: 15px;
        width: 80px;

    }

    .bigger-logos{
        width: 50px !important;
    }
*/
}

@media (max-width: 520px) {
    .column-head {
        font-size: 12px;
        font-weight: lighter !important;
        margin: 5px 0 20px 0;
        padding: 0;
    }

    .teaser-wrapper {
        margin: 0;
    }

    div#private-customer-teasers>div:nth-child(odd) .wrapper,
    div#private-customer-teasers>div:nth-child(even) .wrapper,
    div#business-customer-teasers>div:nth-child(odd) .wrapper,
    div#business-customer-teasers>div:nth-child(even) .wrapper {
        padding: 0;
    }

  /*  .slider-controls {
        text-align: center;
        bottom: inherit;
        right: inherit;
    }
    */
    figcaption,
    figcaption p {
        font-size: 10px;
    }

    .head {
        margin: 15px 0;
    }

    .head:after {
        margin: 0 0 10px 0;
    }

    .head-icons {
        margin: 4px 10px 5px 0;
        float: left;
        width: 12px;
    }

    .checklist {
        font-size: 12px;
    }

    .checklist-head {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    #mikogo-form,
    .firefox #mikogo-form {
        right: -285px;
    }

    input#sid.mikogo-input,
    input#sn.mikogo-input,
    #mikogo-form input#btnSubmit {
        width: 128px !important;
    }
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
        -webkit-transform: scale(.9);
        -webkit-transform-origin: 0 0;
    }
}
