@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Handlee&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Overlock+SC&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import "components/buttons.css";
@import "components/forms.css";
@import "components/header.css";
@import "components/footer.css";
@import "components/home.css";
@import "components/list.css";
@import "components/page.css";

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #585857;
}

body *:focus {
    outline: none !important;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.fs-20 {
    font-size: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-100 {
    margin-top: 100px;
}

.mr-24 {
    margin-right: 24px;
}

.text-white {
    color: white;
}

.arrow {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
}

.arrow.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.arrow.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.arrow.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.arrow.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.pagination-list {
    width: 80%;
    margin: 20px auto 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: center;
}

.pagination-list .pagination-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8e7e7;
    color: #080808;
    text-decoration: none;
    font-weight: bold;
    transition: all .4s ease-in-out;
}

.pagination-list .pagination-item:hover .arrow {
    border-color: white;
}

.pagination-list .pagination-item.active {
    background-color: #808080;
    color: white;
}

.pagination-list .pagination-item:hover {
    background-color: #1A7992;
    color: white;
}

.safe-exit-btn {
    position: fixed;
    width: 400px;
    height: 70px;
    background: #018CA3;
    border: none;
    color: white;
    bottom: 0;
    font-size: 25px;
    z-index: 1;
    right: -335.391px;
    transition: margin-left 1s ease-in-out;
    white-space: nowrap;
    text-align: justify;

}
.safe-exit-btn:hover {
    right: 0;
    z-index: 10;
}


.clickable {
    cursor: pointer;
}
.res-title {
    margin: 30px 14px !important;
    font-size: 45px !important;

}

.pagination-list li:not(:last-child) {
    margin-right: 20px;
}

@media (min-width: 1400px) {
    .container {
        width: 1320px;
    }
}

@media (min-width: 1900px) {
    .container {
        width: 1620px;
    }
}

@media (max-width: 992px) {
    .safe-exit-btn {
        width: 350px;
        height: 55px;
        font-size: 15px;
        bottom: 105px;
        right: -300.000px;
        transition: margin-left 4s ease-in-out;
        white-space: nowrap;
        text-align: justify;
    }

    .safe-exit-btn:hover {
        right: 0px;
        z-index: 50;
    }
}
.safe-exit-btn:hover,
.safe-exit-btn:focus {
    right: 0px;
    z-index: 50;
    background-color: #018CA3;
    transition: background-color 0.3s;
}
.popup-margin {
    margin-top: -65px !important;
}
.container.popup {
    margin-left: 20px; margin-right: 20px;width:99% !important;
}