/**
 * helper.css
 *
 * Mostly small modules with a specific purpose.
 *
 * Index
 * - HELPER
 * - BUTTON
 * - FULLSCREEN
 * - CHECKEDLIST
 * - LAZY
 * - INFOBOX
 * - STATUS
 * - EHI
 * - PRICE
 * - COOKIE
 * - TOOLTIP
 * - OVERLAY
 * - INFOTEXT
 * - ADDRESSDATA-LIST
 * - SYMBOL
 * - SERVICES
 *
 * Media
 * - TABLET
 * - DESKTOP
 */

/* ------------------------------------ *
 * #HELPER
 * ------------------------------------ */

/* Telscheme */
.telscheme {
    text-decoration: none;
}





/* #BUTTON */
.button {
    display: inline-block;
    padding: 8px 10px;
    background: rgb(1, 93, 168);
    border: none;
    border-radius: 2px;
    color: rgb(255, 255, 255);
    font-family: AmbleBold;
    cursor: pointer;
    text-decoration: none;
}
.button.button-primary {
    padding: 13px 18px;
    font-size: 1.3em;
}
.button.button-info {
    background: rgb(180, 184, 184);
}
.button.button-text {
    padding: 0;
    background: transparent;
    color: rgb(0, 0, 0);
    text-decoration: underline;
    font-family: Amble;
}

.button-container {
    overflow: hidden;
    margin: 15px 0;
}
.button-container-order {
    overflow: inherit;
}
.button-container .button-right {
    float: right;
}





/* #FULLSCREEN */
.fullscreen {
    position: relative;
}
.fullscreen::before,
.fullscreen::after {
    content: " ";
    position: absolute;
    display: block;
    top: 0;
    height: 100%;
    width: 100%;
    background: inherit;
}

.fullscreen::before {
    left: -100%;
}
.fullscreen::after {
    right: -100%;
}





/* #CHECKEDLIST */
.checkedlist,
.cms-content .checkedlist {
    margin: 0;
    padding: 0;
}
.checkedlist li,
.cms-content .checkedlist li {
    position: relative;
    padding-left: 24px;
    list-style: none;
}
.checkedlist li:before {
    content: '\f00c';
    position: absolute;
    left: 2px;
    font-family: FontAwesome;
    color: rgb(131, 192, 41);
}





/* #LAZY */
.lazyimg {
    display: block;
    background: url(../../img/loading.gif) center center no-repeat;
    font-size: 0;
    color: transparent;
}





/* #INFOBOX */
.infobox {
    position: relative;
    margin: 15px 0;
    padding: 15px;
    border: 1px solid transparent;
}
.infobox h3 {
    margin-top: 0;
}
.infobox ol {
    padding: 0 0 0 20px;
}
.infobox li {
    padding: 1px 0;
}

.infobox.infobox-error {
    border-color: rgb(255, 0, 0);
    background: rgba(255, 0, 0, 0.1);
}

.infobox.infobox-light {
    padding: 0;
}





/* #STATUS */
.status {
    position: relative;
    margin: 15px 0;
    padding: 15px;
    border: 1px solid transparent;
}
.status p {
    margin: 0;
}
.status.error {
    border-color: rgb(255, 0, 0);
    background: rgba(255, 0, 0, 0.1);
}





/* #EHI */
.ehi-info {

}
.ehi-next,
.forms .ehi-next {
    margin: 15px 0 10px;
}





/* #PRICE */
.price-mag {
    margin: 15px 0;
}
.price-bon {
    
}
.price-list {
    
}

.price-add {

}
.price-add-nocost {
    color: rgb(131, 192, 41);
}
.price-add-text {
    color: rgb(153, 153, 153);
}
.price-add-old {
    color: rgb(153, 153, 153);
}
.price-add-new {
    color: rgb(153, 153, 153);
}
.price-add-cost {
    color: rgb(131, 192, 41);
}
.price-add-text + .price-add-cost {
    color: rgb(153, 153, 153);
}





/* #COOKIE */
.cookie-warning {
    position: absolute;
    display: block;
    top: 0;
    width: 100%;
    padding: 15px 0;
    background: rgb(255, 0, 0);
    font-size: 1.2em;
    color: rgb(255, 255, 255);
    z-index: 100;
}

.cookie-note {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid rgb(224, 224, 224);
    background: rgb(153, 153, 153);
    z-index: 2;
}
.cookie-note.visible {
    display: block;
}
.cookie-note-notify {
    position: relative;
    margin: 0 auto;
    padding: 10px 40px 10px 10px;
    line-height: 1.4em;
}
.cookie-note-notify a {
    text-decoration: underline;
}
.cookie-note-dismiss {
    position: absolute;
    top: 10px;
    right: 10px;
}
.cookie-note-dismiss i {
    font-size: 2em;
    cursor: pointer;
}





/* #TOOLTIP */
.tooltip {
    display: inline-block;
}
.tooltip i {
    margin: 0 0 0 5px;
    font-size: 1.2em;
    cursor: pointer;
    color: rgb(180, 184, 184);
}
.tooltip .tooltip-text {
    display: none;
    font-size: 1rem;
    font-family: Amble;
}

.tooltip-hover:hover .tooltip-text {
    display: block;
}





/* #OVERLAY */
.overlay {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
}
.overlay-wrapper {
    position: relative;
    width: 85%;
    max-height: 85%;
    margin: 0 auto;
    background: rgb(243, 243, 243);
    box-shadow: 2px 2px 2px 1px rgb(180, 184, 184);
}
.overlay-close {
    position: absolute;
    display: block;
    right: -21px;
    top: -21px;
    font-size: 1.4rem;
    color: rgb(255, 255, 255);
    background: rgb(153, 153, 153);
    border-radius: 20px;
    padding: 3px 7px 5px 8px;
    box-shadow: 1px 1px 2px 1px rgb(180, 184, 184);
    cursor: pointer;
}
.overlay-text {
    position: relative;
    overflow: auto;
    margin: 10px 0;
    padding: 10px 20px;
    max-height: 95%;
    box-sizing: border-box;
}





/* #INFOTEXT - with easing effect */
.info-text {
    display: block;
    overflow: hidden;
    max-height: 0;
    margin: 7px 0;
    opacity: 0;
    transition: 0.6s max-height ease-out, 0.6s opacity ease-out, 0.5s margin ease-out, 0.5s padding ease-out;
}
.info-state-expanded .info-text {
    max-height: 300px;
    margin: 15px 0;
    opacity: 1;
    transition: 0.75s max-height ease-in, 0.75s opacity ease-in, 0.6s margin ease-in, 0.6s margin ease-in;
}
.info-text h3 {
    margin-top: 0;
}

/* on start page */
.info-text-start {
    max-height: 210px;
    opacity: 1;
}
/* for info cms */
.info-text-service {
    max-height: 300px;
    opacity: 1;
}
/* for the address list */
.info-text-address {
    margin: -7px 0;
}


.info-state-expanded .info-text-address,
.info-state-expanded .info-text-start,
.info-state-expanded .info-text-service {
    max-height: 2000px;
}



/* Info-Text - states */
.info-controller:after {
    content: '\f0d7';
    font-family: FontAwesome;
    margin: 0 0 0 5px;
}

.info-state-expanded {

}
.info-state-expanded .info-controller:after {
    content: '\f0d8';
}





/* #ADDRESSDATA-LIST */
.addressdata-list {

}
.addressdata-list p {
    margin: 5px 0;
}
.addressdata-list p:first-child {
    margin-top: 0;
}
.addressdata-list-change {
    margin: 15px 0;
}
.addressdata-list p:first-child strong {
    font-size: 1.2rem;
}
.addressdata-list + .button-container {
    margin-bottom: 30px;
}





/* #SYMBOL - Bonus-List & EAA: Overlay Images */
.symbol-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 31%;
    max-width: 79px;
}
.symbol-container img,
.details-image .symbol-container img {
    display: block;
    width: 100%;
    margin: 0 0 5px;
}





/* #SERVICES - Services (ua. Checkout) */
.services {
    display: flex;
    justify-content: space-around;
    max-width: 355px;
    margin: 15px 0;
    font-size: 1em;
    line-height: 0.9em;
}
.services a {
    display: block;
    text-decoration: none;
}
.services a:first-child {
    max-width: 120px;
}
.services img {
    display: block;
    max-height: 120px;
    max-width: 100%;
}
.services a:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services span {
    display: block;
    padding: 2px 0;
    font-size: 1.05em;
    white-space: nowrap;
}
.services i {
    padding: 0 5px 0 0;
    font-size: 1.2em;
    color: rgb(236, 199, 27);
}
.services u i {
    color: transparent;
}





/* #LKZ BANNER */
.lkz-banner-container img {
    width: 100%;
}





/* #TABLET */
@media screen and (min-width: 640px) {

    /* #BUTTON */
    .button {
        padding: 12px 10px;
    }





    /* #OVERLAY */
    .overlay-wrapper {
        max-width: 640px;
        max-width: 580px;
    }
    .overlay-size-small .overlay-wrapper {
        max-width: 350px;
    }

    /* remove read more functionilty */
    .info-text-service,
    .info-text-start {
        transition: none;
        max-height: 1300px;
        opacity: 1;
        margin: 15px 0;
    }
    /* remove redmore button */
    .cmsinfo-service .button-container,
    .info-text-start + .button-container {
        display: none;
    }
}



/* #DESKTOP */
@media screen and (min-width: 1024px) {

    /* #BUTTON */
    .button {
        padding: 8px 10px;
    }
    .button.button-primary {
        padding: 8px 10px;
        font-size: 1.2em;
    }





    /* #OVERLAY */
    .overlay-wrapper {
        max-width: 60em;
    }





    /* #SERVICES */
    .services span {
        font-size: 1em;
    }





    /* #TOOLTIP */
    .tooltip {
        position: relative;
    }
    .tooltip i {

    }
    .tooltip .tooltip-text {
        position: absolute;
        display: none;
        top: -10px;
        left: 40px;
        width: 280px;
        padding: 10px;
        font-size: 0.9rem;
        text-align: left;
        background: rgb(243, 243, 243);
        box-shadow: 2px 2px 3px 0px rgb(224, 224, 224);
        z-index: 1;
        opacity: 0;
        transition: opacity 0.6s;
    }
    .tooltip:hover .tooltip-text {
        display: block;
        opacity: 1;
    }
}