

/* ==========================================================================
   #FONT
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
     
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.font-merriweather {
font-family: 'Inter', sans-serif;
}
.font-robo {
font-family: 'Inter', sans-serif;
}

.font-poppins {
font-family: 'Inter', sans-serif;
}

/* ==========================================================================
   #GRID
   ========================================================================== */

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row-space {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.col-2 {
    width: -webkit-calc((100% - 30px) / 2);
    width: -moz-calc((100% - 30px) / 2);
    width: calc((100% - 30px) / 2);
}

@media (max-width: 767px) {
    .col-2 {
        width: 100%;
    }
}


/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */


/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}


/* ==========================================================================
   #RESET
   ========================================================================== */


/**
 * A very simple reset that sits on top of Normalize.css.
 */

body,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
    margin: 0;
    padding: 0;
}


/**
 * Remove trailing margins from nested lists.
 */

li>ol,
li>ul {
    margin-bottom: 0;
}


/**
 * Remove default table spacing.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */

fieldset {
    min-width: 0;
    /* [1] */
    border: 0;
}

button {
    outline: none;
    background: none;
    border: none;
}


/* ==========================================================================
   #PAGE WRAPPER
   ========================================================================== */

.page-wrapper {
    min-height: 100vh;
    padding: 15px;
}

body {
    font-family: "Encode Sans Expanded", "Arial", "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Encode Sans Expanded", "Arial", "Helvetica Neue", sans-serif;
    font-weight: 400;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 13px;
}


/* ==========================================================================
   #BACKGROUND
   ========================================================================== */

.bg-blue {
    background: #FFF;
}

.bg-red {
    background: #FFF;
}


.bg-yellow {
    background: #f4f8fa;
}


.bg-gra-01 {
    background: -webkit-gradient(linear, left bottom, left top, from(#f3db03), to(#dfa403));
    background: -webkit-linear-gradient(bottom, #f3db03 0%, #dfa403 100%);
    background: -moz-linear-gradient(bottom, #f3db03 0%, #dfa403 100%);
    background: -o-linear-gradient(bottom, #f3db03 0%, #dfa403 100%);
    background: linear-gradient(to top, #f3db03 0%, #dfa403 100%);
}

.bg-gra-02 {
    background: -webkit-gradient(linear, left bottom, right top, from(#f3db03), to(#dfa403));
    background: -webkit-linear-gradient(bottom left, #f3db03 0%, #dfa403 100%);
    background: -moz-linear-gradient(bottom left, #f3db03 0%, #dfa403 100%);
    background: -o-linear-gradient(bottom left, #f3db03 0%, #dfa403 100%);
    background: linear-gradient(to top right, #f3db03 0%, #dfa403 100%);
}


/* ==========================================================================
   #SPACING
   ========================================================================== */

.p-t-100 {
    padding-top: 100px;
}

.p-t-130 {
    padding-top: 130px;
}

.p-t-180 {
    padding-top: 180px;
}

.p-t-20 {
    padding-top: 20px;
}

.p-t-15 {
    padding-top: 15px;
}

.p-t-10 {
    padding-top: 10px;
}

.p-t-30 {
    padding-top: 30px;
}

.p-b-100 {
    padding-bottom: 100px;
}

.m-r-45 {
    margin-right: 45px;
}

.m-r-65 {
    margin-right: 65px;
}


/* ==========================================================================
   #WRAPPER
   ========================================================================== */

.wrapper {
    margin: 0 auto;
}

.wrapper--w960 {
    max-width: 960px;
}

.wrapper--w800 {
    max-width: 800px;
}

.wrapper--w780 {
    max-width: 780px;
}

.wrapper--w680 {
    max-width: 680px;
}

.wrapper--w600 {
    max-width: 600px;
}

.wrapper--w580 {
    max-width: 580px;
}

.wrapper--w400 {
    max-width: 400px;
}

/* ==========================================================================
   #BUTTON
   ========================================================================== */
.hr { color: #1CDBBC !important; }

.btn {
    display: inline-block;
    text-align: center;
    line-height: 16px;
    padding: 10px 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
    font-size: 16px;
 font-weight: 1000;
    color: #000000;
background-color: #1CDBBC;
    font-family: 'Inter', sans-serif;
 -moz-border-radius: 26px; 
-webkit-border-radius: 26px;
    border-radius: 26px;

}

.btn--radius {
    -moz-border-radius: 26px; 
-webkit-border-radius: 26px;
    border-radius: 26px; 

}

.btn--radius-2 {
   -moz-border-radius: 26px; 
-webkit-border-radius: 26px;
    border-radius: 26px; 
}

.btn--pill {
   -moz-border-radius: 26px; 
-webkit-border-radius: 26px;
    border-radius: 26px; 
}

.btn--green {
    background: #e5e5e5;
}

.btn--green:hover {
    background: #d3ab61;
    color: #fff;
}

.btn--blue {
    background: #d3ab61;
}

.btn--blue:hover {
    background: #302f2b;
    color: #fff;
}


/* ==========================================================================
   #DATE PICKER
   ========================================================================== */

td.active {
    background-color: #2c6ed5;
}

input[type="date" i] {
    padding: 14px;
}

.table-condensed td,
.table-condensed th {
    font-size: 14px;
    font-family: "Encode Sans Expanded", "Arial", "Helvetica Neue", sans-serif;
    font-weight: 400;
}

.daterangepicker td {
    width: 40px;
    height: 30px;
}

.daterangepicker {
    border: none;
    -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    display: none;
    border: 1px solid #e0e0e0;
    margin-top: 5px;
}

.daterangepicker::after,
.daterangepicker::before {
    display: none;
}

.daterangepicker thead tr th {
    padding: 10px 0;
}

.daterangepicker .table-condensed th select {
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    padding: 5px;
    outline: none;
}


/* ==========================================================================
   #FORM
   ========================================================================== */

input {
    outline: none;
    margin: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid #848894;
}

.input--style-4 {
    border: 1px solid rgba(0, 0, 0, 0.15);
    line-height: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 14px;
    color: #848894;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.input--style-4:active {
border: 1px solid #d3ab61;
}
.input--style-4:hover {
border: 1px solid #d3ab61;
}

.input--style-4::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #ababab;
}

.input--style-4:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #ababab;
    opacity: 1;
}

.input--style-4::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #ababab;
    opacity: 1;
}

.input--style-4:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ababab;
}

.input--style-4:-ms-input-placeholder {
    /* Microsoft Edge */
    color: #ababab;
}

.label {
    font-size: 14px;
    color: #555;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.radio-container {
    display: inline-block;
    position: relative;
    padding-left: 0px;
    cursor: pointer;
    font-size: 16px;
    color: #d3ab61;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #d3ab61;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-container input:checked~.checkmark {
    background-color: #d3ab61;
}

.radio-container input:checked~.checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    border-radius: 0%;
    border: 1px solid #d3ab61;
}

.checkmark {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #d3ab61;
    border: 1px solid #d3ab61;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.input-group {
    position: relative;
    margin-bottom: 22px;
}

.input-group-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    font-size: 18px;
    color: #999;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.input-group p {
    font-size: 12px;
    margin-left: 35px;
    vertical-align: middle;
    color: #757575;
}

.link {
    text-decoration: none;
    color: #af9057;
}



/* =========================================================================
   #CUSTOM CHECKBOX
   =========================================================================*/



.custom-control-label{
color: #4d4d4f;
font-size: 16px;
font-weight: 400;
padding-left: 13px;
padding-top: 0px;
}


.sub-label {
  font-family: 'Encode Sans Expanded', sans-serif !important;
font-size: 15px !important;
  font-weight: 400 !important;
    color: #4d4d4f !important;
}
.pd-25
{
padding-left: 12px;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact
}
.custom-control-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem
}
.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #1CDBBC;
  background-color: #1CDBBC;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 .2rem rgba(127, 209, 165, .25)
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #1CDBBC
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #1CDBBC;
  border-color: #1CDBBC
}
.custom-control-input:disabled ~ .custom-control-label, .custom-control-input[disabled] ~ .custom-control-label {
  color: #1CDBBC
}
.custom-control-input:disabled ~ .custom-control-label::before, .custom-control-input[disabled] ~ .custom-control-label::before {
  background-color: #1CDBBC
}


.custom-control-input-red {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0
}
.custom-control-input-red:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #FF5757;
  background-color: #FF5757;
}
.custom-control-input-red:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 .2rem rgba(255, 87, 87, .25)
}
.custom-control-input-red:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #FF5757
}
.custom-control-input-red:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #FF5757;
  border-color: #FF5757
}
.custom-control-input-red:disabled ~ .custom-control-label, .custom-control-input[disabled] ~ .custom-control-label {
  color: #FF5757
}
.custom-control-input-red:disabled ~ .custom-control-label::before, .custom-control-input[disabled] ~ .custom-control-label::before {
  background-color: #FF5757
}


.custom-checkbox .custom-control-input-red:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")
}
.custom-checkbox .custom-control-input-red:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff
}
.custom-checkbox .custom-control-input-red:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")
}
.custom-checkbox .custom-control-input-red:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, .5)
}
.custom-checkbox .custom-control-input-red:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, .5)
}


.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top
}
.custom-control-label::before {
  position: absolute;
  top: .25rem;
  left: -1.5rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
  content: "";
  background-color: #F2F2F2;
  border: #D9D9D8 solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: .25rem;
  left: -1.5rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background: 50%/50% 50% no-repeat
}
.custom-checkbox .custom-control-label::before {
  border-radius: 0rem
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, .5)
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, .5)
}

/* ==========================================================================
   #TITLE
   ========================================================================== */

.title {
    font-size: 30px;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.sub-head {
width: 400px;
    font-size: 16px;
line-height: 24px;
    color: #4d4d4f;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}

.sub-head1{
width: 400px;
    font-size: 13px;
line-height: 20px;
    color: #4d4d4f;
    font-weight: 400;
font-style: italic;
    margin-bottom: 15px;
    text-align: center;
}

/* ==========================================================================
   #CARD
   ========================================================================== */

.card {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background: #fff;
border: 1px solid #C7D0D8;
}

.card-4 {
    background: #fff;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow:  0px 0px 0px 0px rgba(0, 0, 0, 0.15);
    box-shadow:  0px 0px 0px 0px rgba(0, 0, 0, 0.15);
}

.card-4 .card-body {
    padding: 0px 50px 30px 50px;
}

@media (max-width: 767px) {
    .card-4 .card-body {
        padding: 0px 40px 50px 40px;
    }
}

@media (max-width: 480px) {
    .card-4 .card-body {
        padding: 0px 40px 50px 40px;
    }
    .p-t-130 {
        padding-top: 30px;
    }
h1 {
    font-size: 26px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 13px;
}
.sub-head {
width: auto;
}
}

.bg-white{background: white;

}



