input,
select,
textarea {
    border: 1px solid #cdc8c8 !important;
}




input:hover,
select:hover,
textarea:hover {
    border: 1px solid #ee1c25 !important;
}



input:focus,
select:focus,
textarea:focus {
    border: 1.5px solid #ee1c25 !important;
    outline: none !important;
    box-shadow: none !important;
    background: #F5F5F5 !important;
}



.agree-box {
    transform: scale(1.5);
    margin-right: 6px;
    margin-top: 2px;
}


.deep-look {
    color: #ee1c25;
    text-decoration: none;
    font-weight: 500;
}


.deep-look:hover {
    text-decoration: underline;
    font-weight: 600;
}





.tab-margin-up {
    margin-top: 6px !important;
    margin-left: -20px !important;
}


.blue-tab-bold {
    color: #2b2b2b;
    font-size: 20px;
    font-weight: 500;
}


.blue-tab-bold-active {
    color: #fc3943 !important;
    font-size: 20px;
    font-weight: 500;
}

.fixed-table {
    table-layout: fixed;
}









.tabnav li {
    height: 100%;
    text-align: center;
}



.tabnav li a {
    position: relative;
    display: block;
    color: var(--Text-Text_disabled);

    line-height: 72px;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 2px solid var(--Border-Border_default);
}


.tabnav li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 3px;
    transform: translateY(100%);
    transition: all 0.3s;
    width: 0;
    height: 2px;
    background: #dedede;
}



.tabnav li a.active {
    border-bottom: 0px solid #ee1c25;

    color: var(--Text-Text_defulat);
}


.tabnav li a.active:before {
    width: 100%;
    height: 2px;
    background: #ee1c25;
    animation: under-blue-spread 0.8s ease 0s;
}



@keyframes under-blue-spread {
    0% {

        background: #ee1c25;
        transform: scaleX(0.1);
    }

    100% {
        background: #ee1c25;
        transform: scaleX(1);
    }
}


.custom-blue {
    background: #fe5d65 !important;
    border: 1px solid #fe5d65 !important
}


.custom-blue:hover {
    background: #fe5d65 !important;
    border: 1px solid #fe5d65 !important
}



.table-fixed {
    table-layout: fixed !important;
    width: 100% !important;

}


#submitBtn,
#searchBtn {
    background: #f5343e;
}

#submitBtn:hover,
#searchBtn:hover {
    transform: scale(1.01);
    background: #fa0e1a;
}