@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

:root {
    --theme-color: #df2127 ;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.board-list-wrapper {
    display: flex;
    gap: 1rem;
}

.board-list {
    width: calc(25% - (1rem * 3) / 4);
}

.board-list > ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1.5rem 0;
}

.dashboard-logo {
    display: flex;
}

.dashboard-logo > img {
    width: 250px;
}

#user-table th,
#user-table td,
#vip-user-table th,
#vip-user-table td,
#qr-table th,
#qr-table td,
#vip-qr-table th,
#vip-qr-table td  {
    text-align: start;
}

#user-table td > a,
#vip-user-table td > a,
#qr-table td > a,
#vip-qr-table td > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
}

#user-table th span,
#user-table td span,
#vip-user-table th span,
#vip-user-table td span,
#qr-table th span,
#qr-table td span,
#vip-qr-table th span,
#vip-qr-table td span   {
    font-size: 14px;
}

input[type="checkbox"] {
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    background: none;
    background-color: #f0f0f0;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 25px;
    width: 25px;
    -webkit-appearance: none;
    opacity: 0.5;
    color: transparent;
}

input[type="checkbox"]:hover {
    opacity: 1;
}

input[type="checkbox"]:checked {
    background-color: var(--theme-color);
    border: 2px solid var(--theme-color);
    opacity: 1;
}

input[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

input[type="checkbox"]:checked:before {
    border-color: #fff;
}

.dt-paging-button.current {
    background-color: var(--theme-color) !important;
    border-color: transparent !important;
}

.dashboard-wrapper form {
    padding: 0 2rem;
    padding-bottom: 0.5rem;
}

#user-table_wrapper,
#vip-user-table_wrapper,
#qr-table_wrapper,
#vip-qr-table_wrapper,
#invited-user-table_wrapper,
#invited-qr-table_wrapper {
    height: 100%;
}

.dt-length > label {
    padding-left: 0.5rem;
}

.dt-layout-row.dt-layout-table {
    height: calc(100% - 110px) !important;
    padding: 0;
    border: 1px solid rgba(0,0,0,.1);
}

.dt-layout-row {
    height: calc(55px - .5rem);
    padding: 0;
}

.dt-layout-cell {
    padding: 0 !important;
    height: 100%;
}

.login-page-contain {
    display: flex;
    justify-content: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    width: 60%;
}

.login-page-wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-page-form .form-group > label {
    font-size: 14px;
    padding-left: 0.5rem;
    margin-bottom: .5rem;
    font-weight: 500;
    color: var(--theme-color);
    position: relative;
    display: flex;
    padding-left: 1rem;
    margin-left: 0;
    top: unset;
}

.login-page-form .form-group .form-group-input > input {
    width: 100%;
    height: 50px;
    border-radius: 70px;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 1rem;
    outline: 0 !important;
    font-size: 13px;
    font-weight: 400;
}

.login-page-form .form-group .form-group-input > input:focus {
    border-color: var(--theme-color);
}

.login-page-form {
    display: flex;
    width: 100%;
}

.login-page-form form {
    width: 100%;
}

.login-page-form .form-group:not(:last-child) {
    margin-bottom: 1.5rem;
}

.login-form-btn > button {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    border: none;
    outline: 0;
    background-color: var(--theme-color);
    border-radius: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    transition: .2s ease-in-out;
}

.login-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-btn > button:hover {
    opacity: .7;
}

.login-pege-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.login-pege-title > span {
    font-size: 20px;
    font-weight: 500;
    color: var(--theme-color);
    width: 60%;
    text-align: center;
}

.login-page-left {
    width: 50%;
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.login-page-right {
    width: 50%;
    background-color: #f0f0f0;
}

.login-page-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
}

.login-page-image > img {
    width: 360px;
}

.login-page-form .form-group .form-group-input {
    position: relative;
}

.login-page-form .form-group .form-group-input > input {
    width: 100%;
    height: 50px;
    border-radius: 70px;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 1rem;
    outline: 0 !important;
    font-size: 13px;
    font-weight: 400;
}

.login-page-form .form-group .form-group-input > input:focus {
    border-color: var(--theme-color);
}

.show-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.show-password > i {
    font-size: 20px;
    color: #666;
}

.success-contain {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div#success-image {
    width: 300px;
}

.success-wrapper {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.success-text > span {
    font-size: 25px;
    color: #00C985;
    font-weight: 600;
    text-align: center;
}

.success-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.success-text > a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    padding: 1rem;
    color: #444;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: .2s ease-in-out;
}

.success-text > a:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.success-text > p {
    width: 60%;
    text-align: center;
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

.dt-layout-cell.dt-start .dt-length {
    position: relative;
}

.delete-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 250px;
    width: 100%;
}

.delete-btn > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background-color: var(--theme-color);
    border: none;
    outline: 0;
    padding: 0.3rem 1rem;
    font-size: 14px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: .2s ease-in-out;
}

.delete-btn > button:hover {
    opacity: .7;
}

.logout-btn {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.logout-btn > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background-color: var(--theme-color);
    border: none;
    outline: 0;
    padding: 0.7rem 1rem;
    font-size: 14px;
    color: #fff;
    transition: .2s ease-in-out;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logout-btn > button > i {
    font-size: 15px;
}

.form-group-contain.entry {
    display: none;
}

.form-group.contact > span {
    font-size: 12px;
    line-height: 1.5;
}

.form-group.contact {
    line-height: 1;
}

.submit-form-title > span {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    padding: 0.5rem 0;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    display: flex;
    width: 90%;
}

.submit-form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: var(--theme-color);
    padding: 1rem;
}

.submit-form-logo {
    width: 45%;
}

.submit-form-title {
    width: 55%;
}

.submit-form-logo > img {
    width: 80%;
}

.submit-form-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 0;
    width: 75%;
}

.submit-form-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.submit-form-content-image {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #e01f27;
}

.submit-form {
    width: 55%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    padding-top: 3rem;
    height: 580px;
    overflow: auto;
}

.submit-form-content-image > img {
    width: 100%;
}

.submit-form > form {
    width: 85%;
}

.submit-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.submit-form-btn > button {
    width: 50%;
    background-color: var(--theme-color);
    border: none;
    padding: 0.5rem;
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
}

.ftco-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 0 !important;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

li.parsley-required {
    color: #d70808;
    font-size: 15px;
}

ul#parsley-id-5 {
    margin: 0 !important;
}

@media screen and (max-width:1199px) {
    .submit-form-title > span {
        font-size: 13px;
    }
}


@media screen and (max-width:993px) {
    .submit-form-content {
        flex-direction: column;
        align-items: center;
    }

    .submit-form {
        width: 90%;
    }

    .submit-form > form {
        width: 100%;
    }

    .submit-form-content {
        flex-direction: column;
        align-items: center;
    }

    .submit-form {
        width: 90%;
    }

    .submit-form > form {
        width: 100%;
    }

    .submit-form-top {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .submit-form-title {
        width: 80%;
    }

    .submit-form-title > span {
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .submit-form-logo > img {
        width: 100%;
    }

    .submit-form-content-image {
        display: none;
    }
}


@media screen and (max-width:553px) {
    .submit-form-wrapper {
        width: 90%;
    }

    .submit-form-logo {
        width: 90%;
    }

    .submit-form {
        width: 100%;
    }

    .submit-form-btn > button {
        width: 100%;
    }
}

@media screen and (max-width:993px) {
    .header-wrapper {
        display: none;
    }

    .mobile-header-wrapper {
        display: flex;
        flex-direction: column;
    }

    .mobile-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
    }

    .mobile-header-top-left,
    .mobile-header-top-right {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .mobile-header-top-left > a {
        display: flex;
        width: 100px;
    }

    .mobile-header-top-left > a > img {
        width: 100%;
    }

    .mobile-header-top-right > a {
        display: flex;
        width: 100px;
    }

    .mobile-header-top-right > a > img {
        width: 100%;
    }

    .mobile-header-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        border-top: 2px solid var(--theme-color);
        padding-left: 0;
    }

    .mobile-header-logo {
        width: 200px;
    }

    .mobile-header-logo > a {
        display: flex;
        width: 100%;
    }

    .mobile-header-logo > a > img {
        width: 100%;
    }

    .mobile-heade-menu-btn {
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--theme-color);
        border-radius: 5px;
    }

    .mobile-heade-menu-btn > i {
        color: #fff;
        font-size: 29px;
    }

    .mobile-header-contain {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100%;
        background-color: #fff;
        z-index: 9;
        width: 50%;
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease-in-out 0s;
    }

    .mobile-header-contain.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .mobile-header-remove {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }

    .mobile-header-contain > ul > li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        transition: all 0.3s ease-in-out 0s;
    }

    .mobile-header-contain > ul > li > a {
        display: flex;
        padding: 1rem;
        color: #000;
        font-size: 13px;
        font-weight: 500;
        width: 100%;
        text-decoration: none;
    }

    .mobile-header-contain > ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .megamenu-overlay {
        position: fixed;
        background: rgba(0, 0, 0, 80%);
        inset: 0;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .megamenu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-header-center > a {
        display: flex;
        width: 130px;
    }

    .mobile-header-center > a > img {
        width: 100%;
    }

    .mobile-header-center {
        position: absolute;
        top: 10px;
        right: 260px;
    }

    .login-page-contain {
        width: 80%;
    }

    .login-page-image > img {
        width: 250px;
    }

    #user-table_wrapper,
    #vip-user-table_wrapper,
    #qr-table_wrapper,
    #vip-qr-table_wrapper,
    #invited-user-table_wrapper,
    #invited-qr-table_wrapper {
        overflow: auto;
    }
}

@media screen and (max-width:769px) {
    .home-btn-container {
        flex-direction: column;
        gap: 1rem;
    }

    .home-btn-wrapper {
        padding: 1rem;
    }

    .form-group-input input#file-1 {
        width: 10%;
    }

    .board-list-wrapper {
        flex-wrap: wrap;
    }

    .board-list {
        width: calc(50% - (1rem) / 2);
    }

    div.dt-container .dt-search {
        float: left;
    }

    div.dt-container div.dt-layout-row {
        display: block;
    }

    div.dt-container div.dt-layout-cell {
        display: block !important;
    }

    div.dt-container div.dt-layout-row.dt-layout-table {
        margin-top: 3rem !important;
    }

    .dt-layout-row.dt-layout-table {
        border: none !important;
    }

    div.dt-container div.dt-layout-cell.dt-start {
        text-align: start !important;
    }

    .dt-container .dt-length {
        text-align: start !important;
    }
}

@media screen and (max-width:769px) {
    .top-banner-text > p {
        font-size: 12px;
    }

    .top-banner-text > span {
        font-size: 15px;
    }

    .top-banner-text > strong {
        font-size: 15px;
        width: 100%;
    }

    .home-btn-container {
        padding: 0;
    }

    .home-btn-wrapper-contain > a {
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .home-btn-wrapper-contain {
        flex-direction: column;
        width: 100%;
    }

    .page-content-image > img {
        width: 100%;
    }

    .footer-container {
        padding: 0;
    }

    .footer-text > span {
        font-size: 12px;
    }

    .mobile-header-top,
    .mobile-header-top-left {
        gap: 1rem;
    }

    .mobile-header-top-left > a,
    .mobile-header-top-right > a  {
        width: 80px;
    }

    .mobile-header-contain {
        width: 95%;
    }

    .page-content span > p {
        font-size: 13px;
    }

    .form-group-input {
        flex-direction: column;
    }

    .form-group.form-group-wrapper {
        flex-direction: column;
    }

    .form-group-contain {
        width: 100%;
    }

    .form-btn {
        width: 100%;
    }

    .page-content > ul > li > span,.page-content > ul > li > p {
        width: 100%;
        justify-content: flex-start;
    }

    .page-content > ul > li {
        flex-direction: column;
    }

    .top-banner-text {
        padding: 2.5rem 0;
    }

    .board-list {
        width: 100%;
    }

    .mobile-header-center {
        position: relative;
        top: unset;
        display: flex;
        gap: 1rem;
        justify-content: space-between;
        width: 100%;
        right: unset;
        padding: 0 1rem;
        padding-bottom: 0.5rem;
    }

    .login-page-contain {
        flex-direction: column;
        width: 90%;
    }

    .login-page-left {
        width: 100%;
    }

    .login-page-right {
        width: 100%;
    }

    .login-pege-title > span {
        width: 100%;
    }

    .delete-btn {
        width: 100%;
    }

    .dt-container .dt-search {
        float: left;
    }

    div#user-table_wrapper,
    div#vip-user-table_wrapper,
    div#qr-table_wrapper,
    div#vip-qr-table_wrapper,
    div#invited-user-table_wrapper,
    div#invited-qr-table_wrapper  {
        overflow: auto;
    }

    .dashboard-header {
        justify-content: flex-start;
        padding: 1.5rem .5rem;
    }

    .logout-btn {
        right: 10px;
    }

    .logout-btn > button {
        padding: .7rem 0;
    }
}


.form-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 9999;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 90%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.form-modal.active {
    opacity: 1;
    visibility: visible;
}

.form-modal-remove {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 40px;
}

.form-modal-remove > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    font-size: 20px;
}

.form-modal-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f0f0f0;
    margin: 1rem 0;
    height: 60px;
}

.form-modal-info > i {
    font-size: 20px;
}

.form-modal-content {
    color: #555;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    height: calc(100% - 100px);
    overflow: hidden;
    overflow-y: auto;
    padding-bottom: 1rem;
}

.form-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.form-modal-btn > a,
.form-modal-btn > button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color) !important;
    width: 200px;
    padding: 0.6rem;
    border-radius: 70px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 300;
    text-decoration: none;
    border: none;
    transition: .2s ease-in-out;
}

.form-modal-btn > a:hover,
.form-modal-btn > button:hover {
    animation: pulse 1s;
    box-shadow: 0 0 0 1em transparent;
}

.form-modal-content::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #e6e6e6;
    border-radius: 5px;
}

.form-modal-content::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 5px;
}

.form-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.form-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-modal-remove > span {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.form-group-input-content.form-kvkk {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.form-group-input-content.form-kvkk > span {
    font-weight: 400;
}

.form-group-input-content.form-kvkk > span > a {
    font-weight: bold;
    color: #000;
}

.header-contain-left,
.header-contain-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
}

.header-contain-left > a,
.header-contain-right > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header-contain-left > a > img,
.header-contain-right > a > img {
    width: 100%;
}

.header-contain {
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bootstrap-table {
    margin-top: 2rem;
}

.table-container {
    padding: .5rem;
}

.qr-button {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.qr-button > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background-color: var(--theme-color);
    border: none;
    outline: 0;
    padding: 0.7rem 1rem;
    font-size: 14px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: .2s ease-in-out;
    width: 150px;
}

.scan-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
}

.scan-wrapper #reader,
.scan-wrapper #result {
    width: 95%;
}

.scan-wrapper #message {
    width: 100%;
    display: flex;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.dashboard-container .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: none;
    gap: 1.5rem;
    flex-wrap: nowrap !important;
}

.dashboard-container .nav li > button {
    color: #000;
    border-radius: 0px;
    border: 1px solid rgba(0,0,0,0.1) !important;
    padding: 0.6rem 1.5rem;
    background-color: #fff;
}

.dashboard-container .nav li > button.active {
    background-color: var(--theme-color);
    color: #fff;
}

.check-users-list {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    width: 100%;
    gap: 1rem;
}

.check-user-content {
    display: flex;
    padding: 1rem;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.1);
}

.check-user-content > span {
    font-size: 15px;
    color: #000;
    font-weight: 300;
}

.check-user-content > span > strong {
    font-weight: 600;
}

#user-table_wrapper .dt-button,
#vip-user-table_wrapper .dt-button,
#qr-table_wrapper .dt-button,
#vip-qr-table_wrapper .dt-button,
#invited-user-table_wrapper .dt-button,
#invited-qr-table_wrapper .dt-button  {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border: none;
    outline: 0;
    padding: 0.7rem 1rem;
    font-size: 14px;
    color: #fff;
    transition: .2s ease-in-out;
    box-shadow: none;
    margin-right: 1rem;
    background: none;
    background-color: #1d6f42;
}

div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover{
    color: #fff !important;
}

.check-search-input {
    display: flex;
    padding: 0 2rem;
    width: 100%;
}

.check-search-input > input {
    width: 100%;
    border: 1px solid var(--theme-color);
    padding: .5rem;
    outline: 0 !important;
}

.location-count-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    width: 100%;
    gap: 1rem;
}

.location-count-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    width: calc(25% - (1rem * 3) / 4);
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,.1);
}

.location-count-content > strong {
    color: #000;
    font-size: 18px;
}

.location-count-content > span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    gap: .5rem;
    color: #444;
}

.location-count-content > span > strong {
    font-size: 40px;
    color: #000;
    display: flex;
}

a.delete-user-btn,
.protocol-user-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #c30707;
    color: #fff !important;
    border-radius: 5px;
    font-size: 15px;
}

a.delete-user-btn:hover,
.protocol-user-btn:hover {
    background-color: #a40505;
}

.invited-user-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--theme-color);
    color: #fff !important;
    border-radius: 5px;
}

.invited-user-btn:hover {
    background-color: #e42429;
}

.invited-btn button:disabled {
    opacity: .5;
}

.ftco-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255,255,255,0.3);
}

.ftco-section .container {
    position: relative;
}

.scan-wrapper #message ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qr-image {
    width: 40%;
}

@media screen and (max-width: 769px){
    .form-modal {
        width: 98%;
    }

    .form-modal-info > span {
        font-size: 13px;
    }

    .form-modal-btn.sartname-check-btn > a {
        width: 100%;
        font-size: 12px;
    }

    .form-modal-btn.sartname-check-btn {
        gap: 1rem;
        flex-direction: column;
    }

    .success-page-text > span {
        font-size: 45px;
    }


    .qr-button {
        right: 140px;
        left: unset;
    }

    .dashboard-container .nav li > button {
        font-size: 13px;
    }

    .location-count-content {
        width: calc(50% - (1rem) / 2);
    }

}

@media screen and (max-width:473px){
    .form-group-input-content.form-kvkk > span {
        font-weight: 400;
        font-size: 10px;
    }

    .dashboard-header {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 1rem;
    }

    .dashboard-logo {
        width: 100%;
        justify-content: flex-start;
    }

    .dashboard-wrapper form {
        padding: 0 0.5rem;
    }

    .dashboard-wrapper form th > span, .dashboard-wrapper form td > span {
        font-size: 10px !important;
        line-height: 1.5 !important;
        display: flex;
    }

    #user-table_wrapper .dt-button,
    #vip-user-table_wrapper .dt-button,
    #qr-table_wrapper .dt-button,
    #vip-qr-table_wrapper .dt-button,
    #invited-user-table_wrapper .dt-button,
    #invited-qr-table_wrapper .dt-button {
        font-size: 11px;
        width: 100%;
    }

    div.dt-container .dt-search input {
        width: 85%;
    }

    div.dt-container .dt-search {
        width: 100%;
    }

    .check-users-list,
    .check-search-input {
        padding: .5rem;
    }

    .location-count-content {
        width: 100%;
    }

    .dashboard-container .nav {
        flex-wrap: wrap !important;
    }
}


