﻿.transparent_btn.orange {
    color: #ffc65d;
    border-color: #ffc65d !important;
}

.span-flex {
    display: flex !important;
}
.bold{
    font-weight:600;
}
.notice{
    font-size:12px;
}
.secondary-btn {
    background-color: rgb(70, 105, 182);
    color: #fff !important;
    border-radius: 4px;
    border: 0;
    box-shadow: inset 0 0 0 1px rgba(144, 144, 144, 0.5);
    cursor: pointer;
    display: inline-block;
    font-size: 0.9em;
    font-weight: 400;
    height: 2.75em;
    letter-spacing: 0.125em;
    line-height: 2.75em;
    padding: 0 2em;
    text-align: center;
    text-decoration: none;
    text-indent: 0.125em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
}
    .secondary-btn:hover{
        opacity:0.85;
    }
    .faq {
        margin-bottom: 30px;
    }

    .faq h3 {
        font-size: 24px;
        cursor: pointer;
        margin-bottom: 10px;
    }

.question-faq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*border-bottom: 1px solid #555;*/
}

    .question-faq h3 {
        font-weight: bold;
    }

.answer-faq {
    max-height: 0;
    font-size: 18px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.active-faq {
    max-height: 4600px;
    transition: max-height 0.3s ease-in;
}

#state-test {
    border-collapse: collapse;
    width: 100%;
    overflow: auto;
}

    #state-test td,
    #state-test th {
        border: 1px solid #ddd;
        padding: 8px;
    }

    #state-test tr:nth-child(even) {
        background-color: #f1f1f1;
    }

    #state-test th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: left;
        background-color: rgb(70, 105, 182);
        color: #fff;
    }

    #state-test td {
        font-weight: 400;
        color: #555;
    }


.modal__wrapper {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: all .3s ease-in-out;
    z-index: 5;
}

.modal__container {
    background: #fff;
    min-height: 40vh;
    max-height: 80vh;
    width: 1000px;
    max-width: 90%;
    padding: 20px;
    border-radius: 4px;
    position: relative;
    transform: translateY(-100%);
    transition: all .1s ease-in-out;
    /*z-index: 999;*/
    overflow: auto;
}

.btn__purple {
    background-color: rgb(70, 105, 182) !important;
    padding: 0px 40px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
}

.modal__container h2 {
    margin-bottom: 10px;
    font-weight: 400;
}

.modal__container h3 {
    font-weight: 400;
}

.modal__container p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.modal__container table,
.modal__container th,
.modal__container td {
    border: 1px solid black;
    border-collapse: collapse;
    text-align: center;
    background-color: white;
}

    .modal__container table thead tr th {
        font-weight: bold;
    }

    .modal__container table tbody tr td {
        font-weight: 500;
    }

.action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.modal__container .close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 40px;
    background: none !important;
    cursor: pointer;
}

    .modal__container .close:hover {
        color: #6B46C1;
    }

.active {
    opacity: 1;
    pointer-events: auto;
}

.modal__wrapper.active .modal__container {
    transform: translateY(0px);
}
/*button trigger*/
.details-btn {
    margin-left: 0.5rem;
    padding: 0px 20px;
    background-color: #555 !important;
}
.test-card-mobile-heading{
    display:none;
}
@media screen and (max-width: 980px) {
    /*.test-card-direction{
        
        flex-direction:column-reverse;
    }*/
    .card-image{
        flex-direction:column;
        align-items:center;
    }
    .test-card-desktop-heading {
        display: none;
    }
    .test-card-mobile-heading {
        display: block;
        /*text-align:center;*/
    }
    span.test-card-mobile-heading:after {
        background: rgba(144, 144, 144, 0.5);
        content: '';
        display: inline-block;
        height: 1px;
        margin-top: 1.5em;
        width: 6em;
    }
    .mobile-paragraph-size{
        font-size: 2.5em !important;
        line-height:1.6;
        letter-spacing:1.2px;
    }
    .mobile-heading-size {
        font-size: 4em !important;
    }
    .mobile-subheading-modal{
        font-size: 2em !important;
    }
    .mobile-btn-size{
        font-size:2em !important;
    }
    .mobile-table-size {
        font-size: 2em !important;
        line-height: 1.6;
        letter-spacing: 1.2px;
    }
    .notice{
        font-size:16px;
        color: #000;
    }
    .modal__container .close{
        font-size:80px;
    }
}