/* Core Styling Variables and Base Utilities */
:host {
    --bg-color: #F9F9F9;
    --text-color: #0f0f0f;
    --text-muted: #9ca3af;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.15);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: block;
}

/** css for page preloader **/

.cssload-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    /* background: rgba(238, 238, 238, .6); */
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.spinner {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 45%;
    left: 50%;
    text-align: center;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}
.dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #FFF;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 12px 0 var(--accent-glow);
    box-shadow: 0 0 12px 0 var(--accent-glow);
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}
.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}
@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}
/** General propreties for header **/
/** CSS rules for app main-header **/

.main-header {
    width: 100%;
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0px;
    z-index: 1001;
}
.main-header .header-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.main-header .logo {
    position: absolute ;
    left: 30px;
    top: 20px;
    height: 44px;
    width: 100px;
    display: flex;
}
.main-header .back {
    position: absolute;
    left: 30px;
    top: 20px;
    height: 44px;
    width: 105px;
}
.main-header .back a, .main-header .logo {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.main-header .back a svg {
    width: 44px;
    height: 44px;
    margin-left: -15px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.main-header .back a span {
    position: absolute;
    font-family: proximabold, arial helvetica;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: .8px;
    line-height: 13px;
    left: 20px;
    align-self: center;
    color: #000;
}
.main-header .logo img {
    max-width: 100px;
}
.menu-icon {
    position: absolute;
    left: calc(100% - 80px);
    top: 17px;
    height: 50px;
    width: 50px;
}
.text-menu {
    font-size:90px;
}

.circle-btn {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 36px 0 var(--accent-glow);
    -webkit-transition: box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1),opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1),opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

/* .circle-btn:hover {
    box-shadow: 0 0 0 0 rgba(10,10,50,0.15);
} */

.menu-open .circle-btn {
    box-shadow: none;
    background-color: transparent;
}

.circle-btn svg circle {
    fill: transparent;
    stroke: var(--accent);
    transform: rotate(-90deg);
    transform-origin: center;
    stroke-linecap : round;
    stroke-width: 15;
    stroke-dashoffset: 1602.212;
    stroke-dasharray: 1602.212 1602.212;
    -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: stroke-dashoffset 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.circle-btn:hover  svg circle {
    stroke-dashoffset: 1;
}

.menu-btn.is-show {
    opacity: 1;
    pointer-events: auto;
}

.menu-open .main-header {
    height: 100vh;
}
.menu-open .main-header .logo {
    display: none;
    visibility: hidden;
}
.main-menu {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    z-index: 1002;

}
.overlay {
    position: fixed;
    width: 4px;
    height: 4px;
    left: calc(100% - 80px);
    top: 20px;
    -webkit-transform: translateX(23px) translateY(23px);
    transform: translateX(23px) translateY(23px);
    z-index: 1000;
}
.overlay span{
    position: absolute;
    display: inline-block;
    background: rgba(255,255,255,0.95);
    -webkit-transform: translateZ(0);
    -webkit-transform: scale(0);
    transform: translateZ(0);
    transform: scale(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}
/*
.menu-open .overlay {
  display: flex;
  opacity: 1;
  width: 100%;
}
.menu-open .overlay {
    transform: scaleX(1) scaleY(1);
    height: 2792.94px;
    width: 2792.94px;
    top: -1396.47px;
    left: -1396.47px;
}*/
.menu-open .main-menu {
    opacity: 1;
    display: flex;
}
.main-menu .menu {
    width: 300px;
    align-self: center;
}
.main-menu .menu .menu-close {
    width: 100%;
    float: left;
    font-size: 30px;
    padding: 10px;
    margin-bottom: 15px;
}
.main-menu .menu-close a {
    display: block;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 36px 0 rgba(10, 10, 50, 0.15);
    -webkit-transition: box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.main-menu .menu-close a:hover {
    box-shadow: 0 0 0 0 rgba(10,10,50,0.15);
}

.main-menu .menu-close a svg circle {
    fill: transparent;
    stroke: var(--accent);
    stroke-width: 3;
    transform-origin: center;
    stroke-linecap: round;
    stroke-dashoffset: 211;
    stroke-dasharray: 211 211;
    -webkit-transition: stroke-dashoffset 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: stroke-dashoffset 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.main-menu .menu-close a:hover svg  circle {
    stroke-dashoffset: 1;
}

.main-menu .menu-close a svg circle {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}
.main-menu .menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.main-menu .menu ul .menu-item {
    width: 100%;
    float: left;
    padding: 7px 10px;
}
.main-menu .menu ul .menu-item  a {
    color: #000;
    font-size: 3rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

/* .main-menu .menu ul:hover .menu-item  a {
    opacity: 0.6;
} */

.main-menu .menu ul .menu-item  a:hover {
  color: var(--accent);
}
.wrapper {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    /*padding-top: 70px;*/
    z-index: 2;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.no-header .wrapper {
    padding-top: 0
}

.wrapper:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out
}

/* ----- bootstrap like css ------ */
/* --- Base Container Styles --- */
.container, .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  }
  
  @media (min-width: 576px) { .container { max-width: 540px; } }
  @media (min-width: 768px) { .container { max-width: 720px; } }
  @media (min-width: 992px) { .container { max-width: 960px; } }
  @media (min-width: 1200px) { .container { max-width: 1140px; } }
  
  /* --- Row Styles --- */
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    box-sizing: border-box;
  }
  
  /* --- Common Column Styles --- */
  [class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
  }
  
  /* --- Extra Small Devices (xs) --- */
  .col { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
  .col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-3 { flex: 0 0 25%; max-width: 25%; }
  .col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-6 { flex: 0 0 50%; max-width: 50%; }
  .col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-9 { flex: 0 0 75%; max-width: 75%; }
  .col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-12 { flex: 0 0 100%; max-width: 100%; }
  
  /* --- Small Devices (sm) >= 576px --- */
  @media (min-width: 576px) {
    .col-sm { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .col-sm-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
  }
  
  /* --- Medium Devices (md) >= 768px --- */
  @media (min-width: 768px) {
    .col-md { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .col-md-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
  }
  
  /* --- Large Devices (lg) >= 992px --- */
  @media (min-width: 992px) {
    .col-lg { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .col-lg-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
  }
  
  /* --- Extra Large Devices (xl) >= 1200px --- */
  @media (min-width: 1200px) {
    .col-xl { flex-basis: 0; flex-grow: 1; max-width: 100%; }
    .col-xl-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
    .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
  }

/* ==========================================
   BASE BUTTON STYLE
   ========================================== */
   .btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
    text-decoration: none;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .btn {
      transition: none;
    }
  }
  
  .btn:hover {
    color: #212529;
    text-decoration: none;
  }
  
  .btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  .btn:disabled, .btn.disabled {
    opacity: 0.65;
    box-shadow: none;
    cursor: not-allowed;
  }
  
  .btn:not(:disabled):not(.disabled):active, 
  .btn:not(:disabled):not(.disabled).active {
    background-image: none;
  }
  
  /* ==========================================
     BUTTON SOLID VARIANTS
     ========================================== */
     
  /* Primary */
  .btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
  }
  .btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
  }
  .btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  }
  .btn-primary:disabled, .btn-primary.disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
  }
  
  /* Secondary */
  .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
  }
  .btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
  }
  .btn-secondary:focus, .btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  }
  .btn-secondary:disabled, .btn-secondary.disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
  }
  
  /* Success */
  .btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
  }
  .btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
  }
  .btn-success:focus, .btn-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  }
  .btn-success:disabled, .btn-success.disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
  }
  
  /* Info */
  .btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
  }
  .btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
  }
  .btn-info:focus, .btn-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  }
  .btn-info:disabled, .btn-info.disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
  }
  
  /* Warning */
  .btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
  }
  .btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
  }
  .btn-warning:focus, .btn-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  }
  .btn-warning:disabled, .btn-warning.disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
  }
  
  /* Danger */
  .btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
  }
  .btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
  }
  .btn-danger:focus, .btn-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  }
  .btn-danger:disabled, .btn-danger.disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
  }
  
  /* Light */
  .btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
  }
  .btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
  }
  .btn-light:focus, .btn-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  }
  .btn-light:disabled, .btn-light.disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
  }
  
  /* Dark */
  .btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
  }
  .btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
  }
  .btn-dark:focus, .btn-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  }
  .btn-dark:disabled, .btn-dark.disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
  }
  
  /* ==========================================
     BUTTON OUTLINE VARIANTS
     ========================================== */
  .btn-outline-primary { color: #007bff; border-color: #007bff; }
  .btn-outline-primary:hover { color: #fff; background-color: #007bff; }
  .btn-outline-primary:focus { box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  
  .btn-outline-secondary { color: #6c757d; border-color: #6c757d; }
  .btn-outline-secondary:hover { color: #fff; background-color: #6c757d; }
  .btn-outline-secondary:focus { box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  
  .btn-outline-success { color: #28a745; border-color: #28a745; }
  .btn-outline-success:hover { color: #fff; background-color: #28a745; }
  .btn-outline-success:focus { box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
  
  .btn-outline-danger { color: #dc3545; border-color: #dc3545; }
  .btn-outline-danger:hover { color: #fff; background-color: #dc3545; }
  .btn-outline-danger:focus { box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  
  /* ==========================================
     SIZING UTILITIES
     ========================================== */
  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
  }
  
  .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
  }
  
  /* ==========================================
     BLOCK BUTTONS
     ========================================== */
  .btn-block {
    display: block;
    width: 100%;
  }
  .btn-block + .btn-block {
    margin-top: 0.5rem;
  }

/* Base Reset & Box Sizing */
.form-group *, 
.form-group *::before, 
.form-group *::after {
  box-sizing: border-box;
}

/* Form Group (Spacing between fields) */
.form-group {
  margin-bottom: 1rem;
}

/* Labels */
.form-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: #212529;
}

/* Standard Inputs, Textareas, and Selects */
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Focus State */
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Placeholder Color */
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

/* Readonly & Disabled States */
.form-control:disabled, 
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/* Textarea Specific height override */
textarea.form-control {
  height: auto;
}

/* File Input */
.form-control-file {
  display: block;
  width: 100%;
}

/* Range Input */
.form-control-range {
  display: block;
  width: 100%;
}

/* Checkboxes and Radios (Standard) */
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  font-size: 1rem;
  color: #212529;
  margin-bottom: 0;
}

/* Inline Checkboxes/Radios */
.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

/* Form Help Text */
.form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 80%;
}

.text-muted {
  color: #6c757d !important;
}

/* Sizing Modifiers (Large and Small) */
.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

/* Readonly Plain Text (For static values in forms) */
.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
/** Overide bootsrap styles **/
.form-control {
    font-size: 14px;
    padding: .5rem .75rem;
    line-height: 1.25;
    color: #000;
}
.form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
}
.btn.focus, .btn:focus {
    outline: none;
    box-shadow: none;
}
.col-form-label {
    padding-top: calc(.5rem - 1px * 2);
    padding-bottom: calc(.5rem - 1px * 2);
}
.col-6.row {
    margin: 0;
}
.col-6.row .col-4 {
    padding-left: 0;
}
.col-6.row .col-6 {
    padding-right: 0;
}
.custom-file-input {
    cursor: pointer;
}
.custom-file-control {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    padding: .5rem .75rem;
    line-height: 1.25;
    color: #464a4c;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    cursor: pointer;
}
.custom-file-control:before {
    content: "Browse";
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    z-index: 6;
    display: block;
    padding: .5rem .75rem;
    line-height: 1.25;
    color: #464a4c;
    background-color: rgba(238,238,238,1);
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0 .25rem .25rem 0;
}
.modal.fade .modal-dialog {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    transform: translate(0);
}
.modal .modal-dialog {
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);
    top: 300px;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.modal.show .modal-dialog {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: translate3d(0, -300px, 0);
    transform: translate3d(0, -300px, 0);
    opacity: 1;
}
.modal-header {
    padding: 0.8rem;
    border-bottom: none;
}
.modal-title {
    line-height: 1.2;
    font-size: 1.2rem;
}
.modal-body {
    padding: 0.8rem 0.8rem 0;
}
.modal-body h5 {
    font-size: 1rem;
}
.modal-footer {
    border-top: none;
    padding: 0.8rem;
}
.confirm-modal .modal-header {
    background-color: rgba(255, 0, 0, 0.75);
    border-bottom: none;
    color: white;
}
.confirm-modal .modal-footer {
    border-top: none;
}
.confirm-modal .close {
    color: white;
}
.text-danger {
    color: #ff0000 !important;
    font-size: 13px;
}
.ng-valid[required], .ng-valid.required  {
    border: 1px solid #49a5e6;
}
.ng-invalid:not(form)  {
    border: 1px solid #ff0000;
}
.custom-file-input:focus~.custom-file-control {
    border-color: #49a5e6;
    box-shadow: none;
}
.custom-select.is-invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .was-validated .form-control:invalid {
    border-color: #ff0000;
}