/* ################################ */
/* ##### Toogle Switch Styles ##### */
/* ################################ */

.stripe--middleblue {
    background-color: #3984be;
}

.stripe--toggler,
.stripe--toggler h3 {
    color: white;
}

.stripe--toggler {
    padding: 2.5rem 0;
}

.toggle-switch-wrapper {
    display: flex;
    padding-top: .3rem;
}

.toggle-switch {
    width: 12rem;
    background-color: #d1d8df;
    border-radius: 1.75rem;
    padding: .4rem .5rem;
    justify-content: center;
    display: flex;
}

.toggle-switch input {
    opacity: 0;
    position: absolute;
    appearance: none;
}

.toggle-switch .toggle-switch-label {
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .4rem .8rem;
    width: 100%;
    background-color: #fff;
    border-radius: 1.75rem;
}

.toggle-switch .toggle-switch-text {
    color: rgba(17, 32, 56, .5);
    font-weight: 400;
    font-family: Univers Next W00 Bold, sans-serif;
}

.toggle-switch .toggle-switch-text.is-active {
    color: #3984be;
}

.toggle-switch .toggle-switch-circle {
    position: relative;
    cursor: pointer;
    width: 2.813rem;
    height: 1.5rem;
    background-color: #d1d8df;
    transition: all 0.2s ease-in 0s;
    -webkit-transition: all 0.2s ease-in 0s;
    -moz-transition: all 0.2s ease-in 0s;
    -o-transition: all 0.2s ease-in 0s;
    border-radius: 1.25rem;
}

.toggle-switch .toggle-switch-circle:before {
    position: absolute;
    content: '';
    height: 1.375rem;
    width: 1.375rem;
    bottom: 0.063rem;
    background-color: #fff;
    border: 2px solid rgba(17, 32, 56, .3);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    border-radius: 1.25rem;
}

.toggle-switch input[aria-checked='true'] + .toggle-switch-label .toggle-switch-circle:before {
    transform: translateX(1.375rem);
    -webkit-transform: translateX(1.375rem);
    -moz-transform: translateX(1.375rem);
    -o-transform: translateX(1.375rem);
    background-color: #3984be;
    border: 2px solid #fff;
}

@media (min-width: 768px) {
    .stripe--toggler {
        padding: 3rem 0;
    }

    .stripe--toggler p {
        margin-bottom: 0;
    }

    .toggle-switch-wrapper {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .stripe--toggler {
        padding: 5rem 0;
    }
}

.toggle-content {
    animation: fadeIn 1s;
    -webkit-animation: fadeIn 1s;
    -moz-animation: fadeIn 1s;
    -o-animation: fadeIn 1s;
}

.toggle-keyvisual--hidden,
.toggle-content--hidden {
    display: none;
}

/* Keyframes for Toogle Content Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}



/* ################################# */
/* ########## Tabs Styles ########## */
/* ################################# */

.stripe--component-switch {
    padding: 2.5rem 0;
}

.stripe--component-switch,
.stripe--component-switch h3 {
    color: white;
}

.stripe--component-switch p {
    margin-bottom: 1rem;
}

.stripe--component-switch .nav-tabs {
    border-bottom: 1px solid #d1d8df;
    margin: 0;
    flex-direction: column;
}

.stripe--component-switch .nav-tabs .nav-link {
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    background-color: transparent;
    padding: 1.25rem;
}

.stripe--component-switch .nav-tabs .nav-link[aria-selected="true"] {
    color: #fff;
    border-bottom: 3px solid #fff;
    font-family: Univers Next W00 Bold,sans-serif;
}

.stripe--component-switch .nav-tabs .nav-link:focus {
    outline: 1px dotted #fff;
}

@media (min-width: 576px){
    .stripe--component-switch .nav-tabs {
        flex-direction: row;
    }

    .stripe--component-switch .nav-tabs .nav-link {
        padding: 0 1.25rem .438rem;
    }

    .stripe--component-switch p {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 992px) {
    .stripe--component-switch {
        padding: 5rem 0;
    }
}

