.container {
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
}
.is_mobile{
    display: block;
}
.is_web{
    display: none;
}
.section {
    padding: 40px 0;
    overflow: hidden;
}
.bg-gradient{
    background-image: linear-gradient(to bottom, #ecfdf5 0%, white 100%);
}
.tabs li.active{
    background-color: #2dd4bf30;
    color: #0d9488;
}
.category-wrap .category-item.active{
    background-color: #2dd4bf30;
    color: #0d9488;
}
.hide{
    display: none;
}
.step-screen{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.step-screen.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}
/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.modal:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 601;
}
.modal.fade {
    visibility: visible;
    opacity: 1;
}
.modal-body {
    max-width: 800px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    background: #fff;
    z-index: 602;
    position: absolute;
    bottom: 0;
    border-radius: 12px 12px 0 0;
}
.modal-close {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: #fff;
    border: 0;
    z-index: 999;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.modal-close:after,
.modal-close:before {
  content: "";
  position: absolute;
  background: #959595;
  height: 1px;
  left: 12px;
  top: 19px;
  width: 17px;
}
.modal-close:after {
  transform: rotate(45deg);
}
.modal-close:before {
  transform: rotate(-45deg);
}
.field-error {
    font-size: 12px;
    color: #f44336;
    position: absolute;
}
/* Button Loader */
.btn-loader {
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 12px;

}
.btn-loader .dot {
    animation: but-loader 1.5s infinite ease-in-out;
    background-color: #fff;
    border-radius: 10px;
    height: 12px;
    width: 12px;
}
.btn-loader .dot:nth-child(2) {
    animation-delay: .5s;
}
.btn-loader .dot:nth-child(3) {
    animation-delay: 1s;
}
select,input[type="date"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
@media only screen and (min-width: 768px) {
    .is_mobile{
        display: none;
    }
    .is_web{
        display: block;
    }
}
@keyframes but-loader{
    0% {
        opacity: .4;
        transform: scale(1, 1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2, 1.2);
    }
    100% {
        opacity: .4;
        transform: scale(1, 1);
    }
}