@charset "UTF-8";

/* lo loader */
.lo-loader-wrap {
    text-align: center;
}

.lo-loader-text {
    display: block;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.lo-loader {
    display: block;
    width: 48px;
    height: 48px;
    border: 10px solid #FFFFFF;
    border-radius: 50%;
    position: relative;
    margin: auto;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.lo-loader::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    inset: -10px;
    border-radius: 50%;
    border: 10px solid #007AAE;
    animation: prixClipFix 2s infinite linear;
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}

/* lo loader */

.page-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* social bar */
.social-bar {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    position: fixed;
    right: 0;
    top: 35%;
    z-index: 100;
}

.social-bar .icon {
    background-color: rgb(0, 122, 174, 0.8);
    color: #FFFFFF;
    display: flex;
    padding: 0.7rem 0.6rem;
    text-decoration: none;
    -webkit-transition: all .5s;
    transition: all .5s;
    overflow: hidden;
}

.social-bar .icon:first-child {
    border-radius: 1rem 0 0 0;
}

.social-bar .icon:last-child {
    border-radius: 0 0 0 1rem;
}

.social-bar .icon:hover {
    padding-right: 2.5rem;
    border-radius: 1rem 0 0 1rem;
}

.social-bar .icon-facebook {
    background-color: #4267B2;
}

.social-bar .icon-twitter {
    background-color: #1DA1F2;
}

.social-bar .icon-youtube {
    background-color: #FF0000;
}

.social-bar .icon-instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

/* social bar */

/* sweet alert */
.swal-text {
    color: #8193A3;
    text-align: center;
}

.swal-title {
    color: #253243;
    font-size: 24px;
    letter-spacing: 0.5px;
    font-weight: 700;
    padding: 10px 15px;
}

.swal-title:not(:last-child) {
    margin-bottom: 0;
}

.swal-button {
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 400;
    box-shadow: none;
    border-width: 2px !important;
    border-style: solid !important;
    box-shadow: none !important;
    border-radius: 5px;
}

.swal-button--confirm {
    background-color: #007AAE;
    color: #FFFFFF;
    border-color: #007AAE !important;
}

.swal-button--confirm:hover {
    background-color: #0095DA !important;
    color: #FFFFFF !important;
    border-color: #0095DA !important;
}

.swal-button--confirm:active,
.swal-button--confirm:focus {
    background-color: #0095DA;
    color: #FFFFFF;
}

.swal-footer {
    background-color: #F9F9F9;
    text-align: center;
    margin-top: 32px;
    border-top: 1px solid #E9EEF1;
    overflow: hidden;
}

.swal-overlay {
    background-color: rgba(56, 68, 83, 0.75);
}

.swal-icon--custom {
    width: auto;
    height: auto;
    max-width: 100%;
}

.swal-icon img {
    width: 75px;
}

/* sweet alert */