
/***** SWITCH *****/
section.switch-section {
    z-index: 10;
}

.switch a.option,
.switch a.option:hover {
    position: relative;
    color: #222222;
    border: 2px solid #fff;
    background-color: #fff;
    padding: 20px 30px 30px;
    width: 100%;

    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    /*
    -webkit-box-shadow: 0 0 40px 0 rgba(226, 0, 116, 0.25), 0 0 20px 0 rgba(226, 0, 116, 0.75);
    -moz-box-shadow: 0 0 40px 0 rgba(226, 0, 116, 0.25), 0 0 20px 0 rgba(226, 0, 116, 0.75);
    box-shadow: 0 0 40px 0 rgba(226, 0, 116, 0.25), 0 0 20px 0 rgba(226, 0, 116, 0.75);
    */

    -webkit-transition: transform .3s ease-out;
    -moz-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
}

.switch a.option:hover {
    -webkit-transform: scale(1.075);
    -moz-transform: scale(1.075);
    transform: scale(1.075);
}

.switch a.option .icon {
    font-size: 54px;
}

.switch a.option h3 {
    margin-top: 25px; 
}

.switch a.option p {
    font-size: 18px;
}

.switch a.option .check {
    width: 32px;
    height: 32px;
    line-height: 30px;
    border: 1px solid #222222;
    font-size: 16px;
    display: inline-block;
    text-align: center;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.switch a.option .check svg {
    margin-top: 7px;
    fill: #222222;
}

.switch a.option.active .check {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    border: none; 
}

.switch a.option.active .check svg {
    fill: #e20074;
}

.switch a.option.active {
    color: #fff;
    background-color: #e20074;
}
.switch a.option.not-active span,
.switch a.option.not-active h3,
.switch a.option.not-active p {
    opacity: 0.5;
}

.switch a.option.active .check {
    background: #fff;
    color: #e20074;
}


/***** OFFER *****/
section.offers {
    margin-top: -60px;
    min-height: 90px;
}

section.offers .offer {
    display: none;
}

section.offers .offer.active {
    display: block;
}

section.offers .offer .offer-content {
    background-size: cover;
    background-position: top;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;

    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

section.offers .offer.active .offer-content {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

/***** MOBILE *****/
@media all and (max-width: 639px) {

    /***** SWITCH *****/
    .switch a.option,
    .switch a.option:hover{
        padding: 15px;
    }

    .switch a.option p {
        font-size: 14px;
    }

/***** SMALL MOBILE *****/
@media all and (max-width: 479px) {

    /***** SWITCH *****/
    section .grid.switch .col.s6 {
        max-width: 100%;

        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    section .grid.switch .col.s6 + .col.s6 {
        margin-top: 30px;
    }

    .switch a.option,
    .switch a.option:hover {
        text-align: left;
        padding-left: 70px;
    }

    .switch a.option .icon {
        position: absolute;
        left: 15px;
        top: 15px;
        font-size: 40px;
    }

    .switch a.option h3 {
        margin-top: 0 !important;
    }

    .switch a.option .check {
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: 0 !important;

        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
}

/***** SWITCH SIZE *****/

@media (max-width: 1199px) {
    .switch a.option {
        min-height:  326px; 
        height: 100%; 
    }
}
@media (max-width: 899px) {
    .switch a.option {
        min-height: 350px; 
    }
}
@media (max-width: 792px) {
    .switch a.option {
        min-height: 373px; 
    }
}
@media (max-width: 694px) {
    .switch a.option {
        min-height: 413px; 
    }
}
@media (max-width: 639px) {
    .switch a.option {
        min-height: auto; 
    }
}