a {
    text-decoration: none !important;
}
body{
    overflow-x: hidden;
}
li {
    list-style: none;
}
input{
    outline: none;
}
.mr10{
    margin-right: 10px!important;
}
.mt10{
    margin-left: 10px!important;
}
.ml15{
    margin-left: 15px!important;
}
.mr15 {
    margin-right: 15px!important;
}
.no-wrap{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lineCenter{
    display: flex;
    align-items: center;
}
.fullyContentCenter{
    display: flex;
    align-items: center;
    justify-content: center;
}
.hidden{
    display: none !important;
}

.title span{
    position: relative;
}
.title span:after{
    content: "";
    width: 50%;
    height: 3px;
    background: #f0c01e;
    position: absolute;
    left: 0;
    top: 100%;
}

.directionLTR{
    direction: ltr !important;
}
.textAlignCenter{
    text-align: center;
}

.comment-comment-form input[type=email], .comment-comment-form input[type=password], .comment-comment-form input[type=text], .comment-comment-form textarea{
    background: #f1f1f1;
    border: none;
    padding: 10px 20px;
}
.comment-comment-form input[type=email]:focus, .comment-comment-form input[type=password]:focus, .comment-comment-form input[type=text]:focus, .comment-comment-form textarea:focus{
    background: #f6f6f6!important;
}
.comment-comment-form input[type=email], .comment-comment-form input[type=password], .comment-comment-form input[type=text], .comment-comment-form textarea, .vi-radius{
    border-radius: 6px;
}

.disableButton{
    cursor: not-allowed;
    opacity: .4;
}
.loadingIcon{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loadingIcon:after, .loadingIcon:before{
    content: '';
    width: 0%;
    height: 0%;
    background: #007eff73;
    position: absolute;
    border-radius: 50%;
    animation: loadingAnimation 2s infinite;
}
.loadingIcon:before{
    background: #0008ff7a;
    animation-delay: 1s;
}

.justifyContent{
    text-align: justify;
}

.show1Line{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.show3Line{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.show4Line{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes loadingAnimation {
    0%{
        width: 100%;
        height: 100%;
    }
    50%{
        width: 0%;
        height: 0%;
    }
    100%{
        width: 100%;
        height: 100%;
    }
}


.facilityListChoose{
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.facilityListChoose .title{
    background: #FFFFFFD1 0% 0% no-repeat padding-box;
    margin-top: 64px;
    font-size: 40px;
    padding: 30px 0px;
    width: 100%;
    text-align: center;
}
.facilityListChoose .contentSection{
    background: #007C91D1 0% 0% no-repeat padding-box;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.facilityListChoose .contents{
    display: flex;
    max-width: 1000px;
    flex-wrap: wrap;
}
.listBox{
    background: #FFFFFFA6 0% 0% no-repeat padding-box;
    border: 1px solid #000000;
    border-radius: 10px;
    width: 40%;
    color: black;
    margin: 20px auto;
    padding: 10px 20px;
    text-align: initial;
    min-height: 50px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.listBox .top{
    font-weight: bold;
    font-size: 1.3em;
}
.listBox .bottom{

}

@media (max-width: 771px) {
    .listBox{
        width: 80%;
        margin: 10px auto;
    }
}




@media (max-width: 960px){
    .showOnScreen{
        display: none !important;
    }
}

@media (min-width: 960px){
    .showOnTablet{
        display: none !important;
    }
}

@media (min-width: 771px) {
    .showOnMobile{
        display: none !important;
    }
}


:root {
    --main-color: #18aeda;
    --default-color: #fff;
    --default-color-light: hsla(0,0%,100%,0.9);
    --secondary-color: #111;
    --third-color: #fedf00;
    --border-radius-size: 8px;
}
