@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    font-family: "Montserrat", sans-serif;
}

main {
    background: #f7f6f4;
    min-height: 100%;
}

.alert {
    font-size: 14px;
    padding: 0.5rem 1rem;
}

.alert-dismissible .btn-close {
    padding: 0.7rem 1rem;
}

/* Login Design */

.login {
    background: #d2e1f2;
    height: 100vh;
    position: relative;
}
.show-cont:not(.active),
.up-arrow:not(.active),
.down-arrow:has(.active) {
    display: none;
}
.login-box {
    width: 800px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
    -moz-box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
    box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
}

.login-img-sec {
    background: url("../images/voip-login-img.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.login-form-sec {
    padding: 30px 30px 30px 0;
}

.login-logo {
    text-align: center;
}

.login-logo img {
    height: 120px;
}

.login-logo h2 {
    padding-top: 20px;
    font-size: 16px;
    color: #a6a8a7;
    text-transform: uppercase;
    margin: 20px 0 30px;
    border-top: 1px solid #e2e2e2;
}

/* Login Design End */

/* Index Design */
section.home-page {
    padding-bottom: 50px;
}

.tab-header-top {
    background: #fff;
    padding: 8px 0;
}

.tab-header-top ul {
    margin: 0;
    padding: 0;
}

.tab-header-top ul li {
    list-style: none;
    display: inline-block;
    margin-left: 10px;
    padding: 8px 0;
}

a.btn-menu {
    font-size: 14px;
    padding: 6px 20px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    background: #3c3c3c;
    border-radius: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
}

a.btn-menu:hover {
    background: rgb(137 160 120);
}

.tab-header-top img {
    height: 60px;
}

.tab-body {
    padding: 12px 0;
}

.data-table.data-table-form {
    padding: 8px;
}

.data-table {
    position: relative;
    border: 1px solid #dbdbdb;
    padding: 8px 15px;
    border-radius: 6px;
    margin-bottom: 5px;
    overflow: hidden;
    background: #fff;
}

.data-table:hover .overflow-action {
    opacity: 1;
    transform: translateX(0);
}

.overflow-action {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.overflow-action ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.overflow-action ul li {
    list-style: none;
}

.overflow-action ul li button,
.overflow-action ul li a {
    display: inherit;
    height: 40px;
    width: 40px;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border: 0;
    border-bottom-left-radius: 10px;
}

.overflow-action ul li a.overflow-view {
    background: #3c3c3c;
}

.data-table p {
    font-size: 14px;
    color: rgb(0, 175, 29);
    margin: 0;
}

.data-table h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
}

.data-table h4 a {
    text-decoration: none;
    border-radius: 0;
    background: #dd7200;
}

.data-table h4 a.badge:hover {
    color: #fff;
}

.filter {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 123;
}

.filter ul {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 34px;
    left: 0;
}

.filter ul li {
    list-style: none;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.filter ul li:last-child {
    margin: 0;
}

.filter-btn i {
    display: inline-block;
    width: 30px;
    height: 30px;
    font-size: 15px;
    line-height: 32px;
    border-radius: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.filter-btn-text {
    margin-left: 4px;
}

.filter-btn-text p {
    font-size: 12px;
    margin: 0;
    background: #fff;
    padding: 2px 10px;
    border-radius: 50px;
}

@media (max-width: 991px) {
    .login-img-sec {
        height: 150px;
        background-position: top;
    }

    .login-form-sec {
        padding: 30px;
    }

    .login-box {
        width: 90%;
    }

    .overflow-action {
        position: static;
    }

    .overflow-action ul {
        justify-content: space-between;
    }

    .overflow-action ul li {
        width: 100%;
        margin-top: 8px;
        height: 22px;
    }

    .overflow-action ul li button,
    .overflow-action ul li a {
        width: 40px;
        margin: auto;
        font-size: 16px;
        height: 22px;
        border-radius: 50px;
        line-height: 22px;
        text-decoration: none;
    }

    .data-table .overflow-action {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 767px) {
    .login-logo img {
        height: 80px;
    }

    .btn-menu span {
        display: none;
    }

    .tab-header-top {
        background: #e6e6e6;
        position: sticky;
        top: 0;
        z-index: 99;
    }

    .data-table p {
        font-size: 12px;
    }

    .data-table h4 {
        font-size: 12px;
    }
}

#gloalloader {
    background: #fff none repeat scroll 0 0;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
}
#gloalloader img {
    width: 70px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
