﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

:root {
    --titleFonts: 'Montserrat', sans-serif;
    --bodyFonts: 'Inter', sans-serif;
    --themeGreen: #26a04c;
    --themeGreenShade5: #d0e9d7;
    --themeBlue: #123262;
    --themeYellow: #F0B61C;
    --themeGray: #58595b;
    --themeGrayShade2: #5b5c5c;
    --themeGrayShade3: #808181;
    --themeGrayShade4: #a9a9a9;
    --themeGrayShade5: #d2d2d2;
    --fontSizeText: 15px;
    --fontSizeHeaderMain: 17px;
    --fontSizeHeaderLevel2: 15px;
    --fontSizeHeaderLevel3: 14px;
    --fontSizeNote: 12px;
}


body, p, span, a, li {
    font-size: var(--fontSizeText) !important;
    font-family: var(--bodyFonts) !important;
}




h1, h2, h3, h4, h5, h6 {
    font-family: var(--titleFonts) !important;
}

h1 {
    /*font-size: var(--fontSizeText) !important;*/
    font-weight: 700 !important;
}
h2 {
   /* font-size: var(--fontSizeHeaderLevel2) !important;*/
    font-weight: 700 !important;
}
h3 {
   /* font-size: var(--fontSizeHeaderLevel3) !important;*/
    font-weight: 700 !important;
}

.text-blue {
    color: var(--themeBlue) !important;
}

.text-gray {
    color: var(--themeGray) !important;
}

.text-green {
    color: var(--themeGreen) !important;
}


.aside-menu .menu-item .menu-link {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.table{
    border-color: #ffffff;
}

.form-control {
    font-size: var(--fontSizeText) !important;
    padding: 8px !important;
}


.btn:hover {
    color: #ffffff;
}

.modal-content {
    z-index: 1200 !important;
}
.swal2-container{
    z-index: 10000 !important;
}
.swal2-popup {
    z-index: 1500 !important;
    position: fixed;
}

.additional-info-required{
    display: none !important;
}


.zcwf_col_help {
    margin-left: 0px !important;
    max-width: 100% !important;
}

.zcwf_col_help span {
    font-size: 15px !important;
    color: #dc3545 !important;
}

.action-link a {
    color: var(--themeGreen);
}

.action-link a:hover {
    color: var(--themeYellow);
}

input::placeholder, textarea::placeholder {
    font-size: 15px !important; /* Adjust the font size as needed */
    color: #d2d2d2 !important; /* Adjust the color as needed */
    /* Add other styles as needed */
}

.font-size-text {
    font-size: var(--fontSizeText) !important;
}
.font-size-headermain {
    font-size: var(--fontSizeHeaderMain) !important;
}
.font-size-headerlevel2 {
    font-size: var(--fontSizeHeaderLevel2) !important;
}
.font-size-headerlevel3 {
    font-size: var(--fontSizeHeaderLevel3) !important;
}
.font-size-note{
    font-size: var(--fontSizeNote) !important;
}

.label-note {
    font-size: var(--fontSizeNote) !important;
    color:var(--themeGrayShade5);
}


.text-white {
    color: #ffffff;
}

.text-blue-primary {
    color: var(--themeBlue) !important;
}

.bg-blue-primary {
    background-color: var(--themeBlue) !important;
}


.text-green-primary {
    color: var(--themeGreen) !important;
}

.text-gray-yellow {
    color: var(--themeYellow) !important;
}

.text-gray-primary {
    color: var(--themeGray) !important;
}

.action-link, .action-link i{
    color: var(--themeGreen) !important;
}

.action-link:hover, .action-link i:hover {
    color: var(--themeYellow) !important;
    cursor: pointer !important;
}

.reject-link {
    color: #F1416C !important;
}

.reject-link:hover {
    cursor: pointer !important;
    font-weight: bold;
}

.swal2-styled.swal2-confirm {
    background-color: var(--themeGreen);
}

.swal2-styled.swal2-confirm:hover {
    background-color: var(--themeYellow);
}

.phone-with-code{
    padding-left: 80px !important;
}

.iti.iti--allow-dropdown {
    width: 100%;
}

.btn-action-link{
    border: 1px solid var(--themeGreen) !important;
    color: var(--themeGreen);
    background-color: #ffffff;
    border-radius: 5px;
    padding: 5px !important;
}

.btn-action-link:hover {
    border: 1px solid var(--themeYellow) !important;
    color: var(--themeYellow);
}


.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
    left:  8px !important;
}
.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
    right: 1px !important;
}

@media (max-width: 767px) {
    .swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
        right: -4px !important;
    }
}