/* FLOATING :: MOBILE */

.share:hover {
    cursor: pointer;
}

.one,
.two,
.three,
.four,
.five,
.six,
.seven,
.eight,
.nine,
.ten {
    position: absolute;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 10px;
    border: 2px solid #fff;
    text-align: center;
    line-height: 8px;
    font-size: 1.2em;
    top: 300px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.one:hover,
.two:hover,
.three:hover,
.four:hover,
.five:hover,
.six:hover,
.seven:hover,
.eight:hover,
.nine:hover,
.ten:hover {
    cursor: pointer;
}

.one i,
.two i,
.three i,
.four i,
.five i,
.six i,
.seven i,
.eight i,
.nine i,
.ten i {
    display: none;
}

.one span,
.two span,
.three span,
.four span,
.five span,
.six span,
.seven span,
.eight span,
.nine span,
.ten span {
    display: none;
}

.one {
    background: #2196f3;
}

.two {
    background: #00e5ff;
}

.three {
    background: #6a1b9a;
}

.floating_nav_close {
    display: none;
}

@media (max-width: 767px) {
    .swal2-popup {
        font-size: 0.75rem !important;
    }

    .swal2-title {
        font-size: 1rem !important;
    }
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination li a {
    border-radius: 5px !important;
    margin-right: 8px;
    color: #7c7c7c;
}

.pagination li a:hover {
    background-color: #0d6efd;
    border-color: #fff;
    color: #fff;
    z-index: 2;
}

.pagination li a:focus {
    background-color: #0d6efd;
    box-shadow: #71aaff;
    color: #fff;
    outline: 0;
    z-index: 3;
}

.active>.pagination li a,
.pagination li a.active {
    background-color: #0d6efd;
    border-color: #fff;
    color: #fff;
    z-index: 3;
}


/* FLOATING :: MOBILE */

.share:hover {
    cursor: pointer;
}

.floating-item {
    position: absolute;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50px;
    border: 2px solid #fff;
    text-align: center;
    line-height: 8px;
    font-size: 1.5em;
    top: 300px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.floating-item:hover {
    cursor: pointer;
}

.floating-item i,
.floating-item span {
    display: none;
}

.floating_nav_close {
    display: none;
}

.shadow-nav-mobile {
    box-shadow: 0 3px 15px 5px rgba(145, 158, 171, 0.2), 0 2px 2px 0 rgba(145, 158, 171, 0.14), 0 1px 5px 0 rgba(145, 158, 171, 0.12) !important;
}

.fs-9 {
    font-size: 0.575rem !important;
}

.w-20 {
    width: 20% !important;
}
/* FLOATING :: WEB */
#floating-button {
    width: 55px;
    height: 55px;
    border-radius: 50% 50% 50% 20%;
    background: #355EFC;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.contact {
    color: white;
    position: absolute;
    top: 5px;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 55px;
    font-size: 38px;
    font-family: "Roboto";
    font-weight: 300;
    animation: plus-out 0.3s;
    transition: all 0.3s;
}

#container-floating {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    z-index: 50px;
}

#container-floating:hover {
    height: 400px;
    width: 90px;
    padding: 30px;
}

#container-floating:hover .contact {
    animation: plus-in 0.15s linear;
    animation-fill-mode: forwards;
}

.edit {
    position: absolute;
    top: 7px;
    display: block;
    bottom: 0;
    left: 0;
    display: block;
    right: 0;
    padding: 0;
    opacity: 0;
    margin: auto;
    line-height: 65px;
    transform: rotateZ(-70deg);
    transition: all 0.3s;
    animation: edit-out 0.3s;
}

#container-floating:hover .edit {
    animation: edit-in 0.2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes edit-in {
    from {
        opacity: 0;
        transform: rotateZ(-70deg);
    }

    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

@keyframes edit-out {
    from {
        opacity: 1;
        transform: rotateZ(0deg);
    }

    to {
        opacity: 0;
        transform: rotateZ(-70deg);
    }
}

@keyframes plus-in {
    from {
        opacity: 1;
        transform: rotateZ(0deg);
    }

    to {
        opacity: 0;
        transform: rotateZ(180deg);
    }
}

@keyframes plus-out {
    from {
        opacity: 0;
        transform: rotateZ(180deg);
    }

    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

.nds {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid white;
    position: fixed;
    z-index: 300;
    transform: scale(0);
    cursor: pointer;
}

.nd8 {
    background: #15ad4d;
    right: 30px;
    bottom: 110px;
    animation-delay: 0.2s;
    animation: bounce-out-nds 0.3s linear;
    animation-fill-mode: forwards;
}

.nd7 {
    background: #15ad4d;
    right: 30px;
    bottom: 110px;
    animation-delay: 0.2s;
    animation: bounce-out-nds 0.3s linear;
    animation-fill-mode: forwards;
}

.nd6 {
    background: #15ad4d;
    right: 30px;
    bottom: 110px;
    animation-delay: 0.2s;
    animation: bounce-out-nds 0.3s linear;
    animation-fill-mode: forwards;
}

.nd5 {
    background: #15ad4d;
    right: 30px;
    bottom: 110px;
    animation-delay: 0.2s;
    animation: bounce-out-nds 0.3s linear;
    animation-fill-mode: forwards;
}

.nd4 {
    background: #15ad4d;
    right: 30px;
    /* bottom: 110px; */
    bottom: 170px;
    animation-delay: 0.2s;
    animation: bounce-out-nds 0.3s linear;
    animation-fill-mode: forwards;
}

.nd3 {
    background: #15ad4d;
    right: 30px;
    /* bottom: 170px; */
    bottom: 230px;
    animation-delay: 0.2s;
    animation: bounce-out-nds 0.3s linear;
    animation-fill-mode: forwards;
}

.nd2 {
    background: #15ad4d;
    right: 30px;
    /* bottom: 230px; */
    bottom: 290px;
    animation-delay: 0.15s;
    animation: bounce-out-nds 0.15s linear;
    animation-fill-mode: forwards;
}

.nd1 {
    background: #15ad4d;
    right: 30px;
    /* bottom: 290px; */
    bottom: 360px;
    animation-delay: 0.1s;
    animation: bounce-out-nds 0.1s linear;
    animation-fill-mode: forwards;
}

.nd0 {
    background: #15ad4d;
    right: 30px;
    /* bottom: 290px; */
    bottom: 360px;
    animation-delay: 0.1s;
    animation: bounce-out-nds 0.1s linear;
    animation-fill-mode: forwards;
}

@keyframes bounce-nds {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce-out-nds {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

#container-floating:hover .nds {
    animation: bounce-nds 0.1s linear;
    animation-fill-mode: forwards;
}

#container-floating:hover .nd3 {
    animation-delay: 0.08s;
}

#container-floating:hover .nd4 {
    animation-delay: 0.15s;
}

#container-floating:hover .nd5 {
    animation-delay: 0.2s;
}

.letter {
    font-size: 23px;
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    line-height: 40px;
}

.letter-text {
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    top: 18px;
    bottom: 0;
    text-align: center;
    line-height: 40px;
}

.reminder {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    line-height: 40px;
}

.profile {
    border-radius: 50%;
    width: 40px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
}

/* FLOATING :: MOBILE */

.share:hover {
    cursor: pointer;
}

.one,
.two,
.three,
.four,
.five,
.six,
.seven,
.eight,
.nine,
.ten {
    position: absolute;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 10px;
    border: 2px solid #fff;
    text-align: center;
    line-height: 8px;
    font-size: 1.2em;
    top: 300px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.one:hover,
.two:hover,
.three:hover,
.four:hover,
.five:hover,
.six:hover,
.seven:hover,
.eight:hover,
.nine:hover,
.ten:hover {
    cursor: pointer;
}

.one i,
.two i,
.three i,
.four i,
.five i,
.six i,
.seven i,
.eight i,
.nine i,
.ten i {
    display: none;
}

.one span,
.two span,
.three span,
.four span,
.five span,
.six span,
.seven span,
.eight span,
.nine span,
.ten span {
    display: none;
}

.one {
    background: #2196f3;
}

.two {
    background: #00e5ff;
}

.three {
    background: #6a1b9a;
}

.floating_nav_close {
    display: none;
}

@media (max-width: 767px) {
    .swal2-popup {
        font-size: 0.75rem !important;
    }

    .swal2-title {
        font-size: 1rem !important;
    }
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination li a {
    border-radius: 5px !important;
    margin-right: 8px;
    color: #7c7c7c;
}

.pagination li a:hover {
    background-color: #0d6efd;
    border-color: #fff;
    color: #fff;
    z-index: 2;
}

.pagination li a:focus {
    background-color: #0d6efd;
    box-shadow: #71aaff;
    color: #fff;
    outline: 0;
    z-index: 3;
}

.active>.pagination li a,
.pagination li a.active {
    background-color: #0d6efd;
    border-color: #fff;
    color: #fff;
    z-index: 3;
}

.reminder {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    line-height: 40px;
}

.profile {
    border-radius: 50%;
    width: 40px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
}
