@charset "utf-8";

/* --------------------------------------------------------
1. Fonts
-----------------------------------------------------------*/

/* --------------------------------------------------------
2. Root Variables
-----------------------------------------------------------*/

:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #212529;
  --secondary: #1abc9c;
  --danger: #c50000;
  --success: #177317;
  --warning: #ff8800;
  --darkgray: #6c757d;
  /*--gray: #adb5bd;*/
  --gray:#bec1c3;
  --lightgray: #f8f9fa;
  --textcolor: #212529;
  --base-font-size: 16px;
  --base-line-height: 1.6em;
}

:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
  word-spacing: normal; 
  line-height: var(--base-line-height);
  font-size: var(--base-font-size);
  color: var(--textcolor);
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

/* --------------------------------------------------------
3. Base or Reset or common CSS
-----------------------------------------------------------*/

/* html tags */
*{
  position: relative; 
  box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  -ms-box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  margin:0;
  padding:0;
  border:0;
  outline:0;
  -webkit-text-size-adjust: 100%; 
  -webkit-text-size-adjust: 100%; 
  -webkit-tap-highlight-color: var(--black);
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}
html,body {
    /*height: 100%;*/
    width:100%;
    background-color: #fff;
}
hr{
  border:0;
  border-top:1px solid var(--darkgray);
  width: 100%;
}
ol li, ul li{
  line-height: 1.5em;
  padding: 0;
  margin: 0;
}
nav ol, nav ul, ol, li {
  list-style:none;
  line-height: inherit;
  padding: 0;
  margin: 0;
}

blockquote, q {
  quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}
p,.p{
    padding-bottom: 20px;
}
small{
  font-size: 0.8rem;
}
figure{ 
  margin:0; padding:0; 
}
svg { 
  vertical-align: middle; 
}
img{
  width: 100%;
  height: auto;
}
::-moz-selection {
  color: var(--white);
  background: var(--dark);
}
::selection {
  color: var(--white);
  background: var(--dark);
}
/* html tags end */

/* ------------------------------------
        start heading styles
---------------------------------------*/

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
  margin: 0;
  color: #333333;
  padding-bottom: 20px;
  font-weight: 600;
  line-height: normal;
}
h1,.h1{
  font-size: 32px;
}
h2,.h2{
  font-size: 30px;
}
h3,.h3{
  font-size: 28px;
}
h4,.h4{
  font-size: 24px;
}
h5,.h5{
  font-size: 20px;
}
h6,.h6{
  font-size: 18px;
}
h1.normal,.h1.normal,h2.normal,.h2.normal,h3.normal,.h3.normal,h4.normal,.h4.normal,h5.normal,.h5.normal,h6.normal,.h6.normal{
font-weight: normal;
}
/* ------------------------------------
      end heading styles
---------------------------------------*/

/* standard classes */
.float-left { 
    float: left;
}
.float-right { 
    float: right;
}
.align-left {
    float: left;
    margin-right: 15px;
}
.align-right {
    float: right;
    margin-left: 15px;
}
.block-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.clear {
  clear: both;
  height: 0; 
  font-size: 0; 
  line-height: 0; 
  overflow: hidden;
}
.lh-0{
  line-height: 0;
}
.lh-normal{
  line-height: normal;
}
.no_bg{
  background: none;
}
.border-bottom{
  border-bottom: 1px solid var(--gray);
}
.border-top{
  border-top: 1px solid var(--gray);
}
.img-wrap{
  line-height: 0;
}
/* standard classes end */

.font-more-1{
  font-size: 1.1em;
}
.font-more-2{
  font-size: 1.2em;
}
.font-more-3{
  font-size: 1.3em;
}
.font-more-4{
  font-size: 1.4em;
}
.font-more-5{
  font-size: 1.5em;
}

/* ------------------------------------
        start anchor & button styles
---------------------------------------*/

a:focus { 
    outline: 0px solid;
}
a { 
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
    color: var(--textcolor);
    -webkit-tap-highlight-color: transparent;
}
a:hover { 
  color: var(--secondary);
  text-decoration: none;
}
a.active { 
  color: var(--secondary);
  text-decoration: none;
}
a.white{
  color: var(--white);
}

a.white:hover, a.white:active{
  color: var(--white);
}
a.underline {
  transition: text-decoration .1s ease;
  top: 0px;
  text-decoration: underline;
}
a.underline:after {
  content: "";
    width: 100%;
    height: 1px;
    background-color: var(--textcolor);
    left: 0;
    bottom: 2px;
    display: block;
    position: relative;
}
a.underline:hover:after {
  -webkit-transition: width .3s ease-in-out;
  -moz-transition: width .3s ease-in-out;
  -o-transition: width .3s ease-in-out;
  transition: width .3s ease-in-out;
  width: 100%;
  background-color: var(--black);
}
a.btn{
  line-height: normal;
  width: auto;
  display: inline-block;
  text-align: center;
}
.btn {
  border: 1px solid transparent;
  background-color: var(--primary);
  border-radius: 5px;
  color: var(--white);
  padding: 12px 20px;
  letter-spacing: 0px;
  font-size: 16px;
  line-height: normal;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  vertical-align: middle;
  transition: all 300ms ease 0ms;
  width: auto;
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  min-height: 46px;
}
.btn:hover, .btn.active {
  transition: all 300ms ease 0ms;
  background-color: var(--black);
  color: var(--white);
}
.btn.btn-secondary{
  color: var(--white);
  background-color: var(--secondary);
}
.btn.btn-danger{
  color: var(--white);
  background-color: #dc3545;
}
.btn.btn-success{
  color: var(--white);
  background-color: var(--success);
}
.btn.btn-outline{
  background-color: white;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn.btn-outline:hover, .btn.btn-outline.active{
  background-color: var(--primary);
  color: var(--white);
}
.btn.btn-rounded{
  border-radius: 50px;
}
.btn.btn-sm {
  padding: 11px 15px;
  font-size: 14px;
  letter-spacing: 0;
  min-height: auto;
}
.btn.btn-smx {
  padding: 9px 12px;
  font-size: 12px;
  letter-spacing: 0;
  border-radius: 5px;
  min-height: auto;
}
.btn.btn-big {
  padding: 33px 35px;
  font-size: 24px;
}
.btn.auto-width{
  width: auto;
  display: inline-block;
}
.btn.btn-smx.fa-icon{
  font-size: 1.1em;
  padding: 4px 5px;
}

/* ------------------------------------
        end anchor & button styles
---------------------------------------*/


/* ------------------------------------
        start margin & padding styles
---------------------------------------*/

.section-padding { 
    padding: 60px 0; 
}
.no-margin {
  margin: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.no-bottom-margin {
    margin-bottom: 0 !important;
}
.no-top-margin {
  margin-top: 0 !important;
}
.no-left-margin {
  margin-left: 0 !important;
}
.no-right-margin {
  margin-right: 0 !important;
}
.no-bottom-padding {
  padding-bottom: 0 !important;
}
.no-top-padding {
  padding-top: 0 !important;
}
.no-left-padding {
  padding-left: 0 !important;
}
.no-right-padding {
  padding-right: 0 !important;
}

/* ------------------------------------
        end margin & padding styles
---------------------------------------*/


/* ------------------------------------
            start margin styles
---------------------------------------*/


.margin-bottom-0 {
  margin-bottom: 0;
}
.margin-bottom-5 {
  margin-bottom: 5px;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-bottom-15 {
  margin-bottom: 15px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-bottom-25 {
  margin-bottom: 25px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-bottom-35 {
  margin-bottom: 35px;
}
.margin-bottom-40 {
  margin-bottom: 40px;
}
.margin-bottom-45 {
  margin-bottom: 45px;
}
.margin-bottom-50 {
  margin-bottom: 50px;
}
.margin-bottom-55 {
  margin-bottom: 55px;
}
.margin-bottom-60 {
  margin-bottom: 60px;
}
.margin-bottom-65 {
  margin-bottom: 65px;
}
.margin-bottom-70 {
  margin-bottom: 70px;
}
.margin-bottom-75 {
  margin-bottom: 75px;
}
.margin-bottom-80 {
  margin-bottom: 80px;
}
.margin-bottom-84 {
  margin-bottom: 84px;
}
.margin-bottom-90 {
  margin-bottom: 90px;
}
.margin-bottom-100 {
  margin-bottom: 100px;
}
.margin-top-5 {
  margin-top: 5px;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-25 {
  margin-top: 25px;
}
.margin-top-30{
  margin-top: 30px;
}
.margin-top-35{
  margin-top: 35px;
}
.margin-top-40{
  margin-top: 35px;
}
.margin-top-45{
  margin-top: 45px;
}
.margin-top-50{
  margin-top: 50px;
}
.margin-top-60{
  margin-top: 60px;
}
.margin-top-65{
  margin-top: 65px;
}
.margin-top-70{
  margin-top: 70px;
}
.margin-top-80{
  margin-top: 80px;
}
.margin-top-90{
  margin-top: 90px;
}
.margin-top-100{
  margin-top: 100px;
}
.margin-tb-30{
  margin-top: 30px;
  margin-bottom: 30px;
}
.margin-tb-40{
  margin-top: 40px;
  margin-bottom: 40px;
}
.margin-tb-50{
  margin-top: 50px;
  margin-bottom: 50px;
}
.margin-tb-60{
  margin-top: 60px;
  margin-bottom: 60px;
}
.margin-tb-70{
  margin-top: 70px;
  margin-bottom: 70px;
}
.margin-tb-80{
  margin-top: 80px;
  margin-bottom: 80px;
}
.margin-left-0 {
  margin-left: 0;
}
.margin-left-10 {
  margin-left: 10px;
}
.margin-left-15 {
  margin-left: 15px;
}
.margin-left-20 {
  margin-left: 20px;
}
.margin-right-0 {
  margin-right: 0;
}
.margin-right-5 {
  margin-right: 5px;
}
.margin-right-10 {
  margin-right: 10px;
}
.margin-right-15 {
  margin-right: 15px;
}
.margin-right-20 {
  margin-right: 20px;
}
.margin-rl-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.margin-rl-5 {
  margin-left: 5px;
  margin-right: 5px;
}
.margin-rl-10 {
  margin-left: 10px;
  margin-right: 10px;
}

/* ------------------------------------
            end margin styles
---------------------------------------*/

/* ------------------------------------
            start padding styles
---------------------------------------*/

.no-padding {
  padding: 0 !important;
}
.no-bottom-padding {
  padding-bottom: 0;
}
.no-top-padding {
  padding-top: 0;
}
.padding-top-5 {
  padding-top: 5px;
}
.padding-top-10 {
  padding-top: 10px;
}
.padding-top-15 {
  padding-top: 15px;
}
.padding-top-20 {
  padding-top: 20px;
}
.padding-top-25 {
  padding-top: 25px;
}
.padding-top-30 {
  padding-top: 30px;
}
.padding-top-35 {
  padding-top: 35px;
}
.padding-top-40 {
  padding-top: 40px;
}
.padding-top-45 {
  padding-top: 45px;
}
.padding-top-50 {
  padding-top: 50px;
}
.padding-top-60 {
  padding-top: 60px;
}
.padding-top-70 {
  padding-top: 70px;
}
.padding-top-80 {
  padding-top: 80px;
}
.padding-top-90 {
  padding-top: 90px;
}
.padding-top-100 {
  padding-top: 100px;
}

.padding-left-0 {
  padding-left: 0;
}
.padding-left-10 {
  padding-left: 10px;
}
.padding-left-15 {
  padding-left: 15px;
}
.padding-left-20 {
  padding-left: 20px;
}
.padding-left-30 {
  padding-left: 30px;
}
.padding-left-40 {
  padding-left: 40px;
}
.padding-left-50 {
  padding-left: 50px;
}

.padding-right-0 {
  padding-right: 0;
}
.padding-right-10 {
  padding-right: 10px;
}
.padding-right-15 {
  padding-right: 15px;
}
.padding-right-20 {
  padding-right: 20px;
}
.padding-right-30 {
  padding-right: 30px;
}
.padding-right-40 {
  padding-right: 40px;
}
.padding-right-50 {
  padding-right: 50px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}
.padding-bottom-20 {
  padding-bottom: 20px;
}
.padding-bottom-25 {
  padding-bottom: 25px;
}
.padding-bottom-30 {
  padding-bottom: 30px;
}
.padding-bottom-40 {
  padding-bottom: 40px;
}
.padding-bottom-50 {
  padding-bottom: 50px;
}
.padding-bottom-60 {
  padding-bottom: 60px;
}
.padding-bottom-70 {
  padding-bottom: 70px;
}
.padding-bottom-80 {
  padding-bottom: 80px;
}
.padding-bottom-90 {
  padding-bottom: 90px;
}
.padding-bottom-100 {
  padding-bottom: 100px;
}


/* ------------------------------------
               end padding styles
---------------------------------------*/

/* form element */

::-webkit-input-placeholder { /* WebKit browsers */
  color:var(--darkgray);
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color:var(--darkgray);
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
  color:var(--darkgray);
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
 color:var(--darkgray);
}
::selection {
background: var(--black); /* WebKit/Blink Browsers */
color:var(--white);
}
::-moz-selection {
background: var(--black); /* Gecko Browsers */
color:var(--white);
}
label{
  color: var(--body);
}
form{
  /*overflow-x: hidden;*/
}
.form-row{
  width: calc(100% + 10px);
    padding: 20px 0 0 0;
    clear: both;
    overflow: auto;
    margin-left: -5px;
}

.form-item{
  float: left;
  padding: 0 5px;
}

input,textarea,select,.fakebox{
  border: 0;
  font-size: var(--base-font-size);
  line-height: normal;
  width: 100%;
  padding: 12px 15px;
  font-family: var(--primary-font);
  background-color: var(--white);
  resize: vertical;
  margin-top:5px;
  border: 1px solid var(--gray);
  border-radius: 5px;
  min-height: 46px;
}
.fakebox span{
  line-height: var(--base-font-size);
}
input.slim,select.slim,.fakebox.slim{
  padding: 14px 25px;
}
select option{
  padding: 4px 0px;
  position: relative;
}
select[multiple]{
  min-height: 200px;
}
select[multiple] option{
  padding: 4px 10px;
  position: relative;
}
select[multiple] option:before{
  /*content: "\27A4";
  position: absolute;
  left: -5px;
  top: 3px;*/
}
select:invalid {
  color: var(--gray);
}
select[disabled] {
  color: (--gray);
}
select option {
  color: var(--black);
}
select option:disabled {
  color: (--gray);
}
select:focus{
  color: var(--black);
}
input[type='range']{
  font-size: var(--base-font-size);
  line-height: inherit;
  width: 100%;
  padding: 0;
  resize: vertical;
  margin-top:0;
  border: 0px;
  border-radius: 3px;
  -webkit-appearance: none;
  height: 6px;
  background: #ccc;
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
  z-index: 2;
}
input[type='range']:hover {
  opacity: 1;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  cursor: pointer;
  border-radius: 50%;
}
input[type='range']::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
}
input[type='range']#prediction::before{
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/slider-end-icon.png);
  background-size: cover;
  left: 0;
  top: -7px;
  position: absolute;
  z-index: -1;
}
input[type='range']#prediction::after{
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/slider-end-icon.png);
  background-size: cover;
  right: 0;
  top: -7px;
  position: absolute;
  z-index: -1;
}
input[type='radio'],input[type='checkbox']{
  width: auto;
  height: 20px;
}
[type="checkbox"]:not(:checked), [type="checkbox"]:checked, [type="radio"]:not(:checked), [type="radio"]:checked{
  position: absolute;
  left: -50px;
  display: inline;
  width: auto;
  position: relative;
  cursor:pointer;
  margin: 0;
  padding: 0;
}
[type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label, [type="radio"]:not(:checked) + label, [type="radio"]:checked + label{  
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  top: 8px;
  left: 30px;
  padding: 0;
-webkit-user-select: none; /* webkit (safari, chrome) browsers */
-moz-user-select: none; /* mozilla browsers */
-khtml-user-select: none; /* webkit (konqueror) browsers */
-ms-user-select: none; /* IE10+ */
}
.dynamic [type="checkbox"]:not(:checked) + label, .dynamic [type="checkbox"]:checked + label, .dynamic [type="radio"]:not(:checked) + label, .dynamic [type="radio"]:checked + label{  
  font-size: 1em;
}
input[type=checkbox]:before, input[type=radio]:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50px;
  background-color:#fff;
  border: 1px solid var(--primary);
  border-radius: 5px;
}
input[type=checkbox]:checked:before, input[type=radio]:checked:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid var(--primary);
  background-color:var(--primary);
}
input[type=checkbox]:checked:after{
  content: "";
  display: block;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  /*top: -8px;*/
  top: 2px;
  left: 56px;
}
input[type=radio]:checked:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 7px;
  left: 55px;
}
input[type=radio]:checked:before, input[type=radio]:before {
  border-radius: 50%;
}
input[type="date"] {
  padding: 8px 10px;
}
/*form label{
  font-size: 0.9em;
  position: relative;
  background: #fff;
  top: 18px;
  z-index: 2;
  padding: 0 10px;
  left: 15px;
}*/
.label-wrap{
  position: relative;
}
.label-wrap label{
  font-size: 0.9rem;
  position: absolute;
  left: 0px;
  color: #888;
  top: 0px;
  transition: 0.2s;
  opacity: 0;
  line-height: 0;
}
.label-wrap > input:not(:placeholder-shown) + label, .label-wrap > select:valid + label, 
.label-wrap > textarea:not(:placeholder-shown) + label, .label-wrap > .select2-container--below + label, 
.label-wrap.active label
{
  opacity: 1;  /* To visually hide the label's pseudoelement */
  top: -12px;
  font-size: 0.85rem;
  margin: 0;
  line-height: normal;
  color: #222222;
}
.form-wrap.single .form-row{
  padding-bottom: 0;
}
.form-wrap.single input,.form-row.single select,.form-wrap.single textarea{
  margin-bottom: 25px;
}
.input-image-wrap{
  width: 100%;
  background-color: #fff;
  height: 110px;
  border: 1px solid #aeaeae;
  border-radius: 5px;
  margin-bottom: 25px;
  text-align: center;
}
.input-image-wrap img{
  max-width: 100%;
  max-height: 100%;
}

/* end form elements */

/* grid */
.fluid-container{
  width: 88%; margin: 0 auto; padding-bottom: 40px;
}
.container { 
  width: 1280px; max-width: 96%; margin: 0 auto; 
}
.container.small{
  width: 1080px; max-width: 96%;
}
.container.big{
  width: 1500px; max-width: 96%;
}
.one-whole,.w-100,.full{ 
  width: 100% !important; 
}
.one-half, .w-50,.half{ 
  width: 50%; 
}
.one-third{ 
  width: 33.333%; 
}
.one-fourth{ 
  width: 25%; 
}
.one-fifth{ 
  width: 20%; 
}
.one-sixth{ 
  width: 16.666%; 
}
.one-eight{ 
  width: 12.5%; 
}
.one-tenth{ 
  width: 10%; 
}
.two-thirds{ 
  width: 66.666%; 
}
.two-fifths{ 
  width: 40%; 
}
.three-fourths{ 
  width: 75%; 
}
.three-fifths{ 
  width: 60%; 
}
.three-eights{ 
  width: 37.5% 
}
.four-fifths{ 
  width: 80%; 
}
.five-sixths{ 
  width: 83.333% 
}
.seven-eights{ 
  width: 87.5%; 
}
.nine-tenths{ 
  width: 90%; 
}
.h-100{ 
  height: 100%; 
}
.hide, .d-none{
  display: none;
}
.show, .display-block, .block{
  display: block;
}
.show-inline, .display-inline-block{
  display: inline-block;
}
.display-inline{
  display: inline;
}
.overflow-auto{ 
  overflow:auto; 
}
.overflow-hide{ 
  overflow:hidden; 
}
.relative{ 
  position: relative !important; 
}
.absolute{ 
  position: absolute !important; 
}
.top-0{
  top: 0;
}
.left-0{
  left: 0;
}
.right-0{
  right: 0;
}
.bottom-0{
  bottom: 0;
}
.fixed{ 
  position: fixed; 
}
.align-center{
  margin:0 auto;
  display: block;
}
section{
  width: 100%;
  margin: 30px 0;
}
.wrapper{
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

.z-index-10{
  z-index: 10;
}
.z-index-20{
  z-index: 20;
}
.z-index-30{
  z-index: 30;
}
.z-index-40{
  z-index: 40;
}
.z-index-highest{
  z-index: 999999;
}


/* text styling */

.text-center,.center {
  text-align: center;
}
.text-justify,.justify {
text-align: justify;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-white{
  color: var(--white);
}
.text-black{
  color: var(--black);
}
.text-lightgray{
  color: var(--lightgray);
}
.text-gray{
  color: var(--gray);
}
.text-dark-gray{
  color: var(--darkgray);
}
.text-success{
  color:var(--success);
}
.text-danger{
  color:var(--danger);
}
.text-primary{
  color: var(--primary);
}
.text-secondary{
  color: var(--secondary);
}
.text-warning{
  color:var(--warning);
}

.text-light{
  font-weight: 100;
}
.text-normal{
  font-weight: normal;
}
.text-bold{
  font-weight: bold;
}

/* end text styling */

/* Flex */
.flex{
  display: flex !important;
  align-items: center;
}
.flex-wrap{
  flex-wrap: wrap;
}
.flex-align-top, .flex-align-left{
  align-items: flex-start;
}
.flex-align-bottom{
  align-items: flex-end;
}
.flex-align-right{
  justify-content: end;
}
.flex-align-self{
  align-self: stretch;
}
.flex-row{
  flex-direction: row;
}
.flex-column{
  flex-direction: column;
}
.flex-center, .flex-justify-content{
  justify-content: center;
}
.flex-space-between{
  justify-content: space-between;
}
.flex-space-around{
  justify-content: space-around;
}
.flex-space-evenly{
  justify-content:space-evenly;
}
.no-shrink{
  flex-shrink: 0;
}
.flex-gap-10{
  gap:10px;
}
.flex-gap-15{
  gap:15px;
}
.flex-gap-20{
  gap:20px;
}
.flex-gap-25{
  gap:25px;
}
.flex-gap-30{
  gap:30px;
}


/* table */
table{
  width: 100%;
  /*border-collapse: collapse;*/
  border-spacing: 1px;
}
table th, table td{
  padding:0px;
}
table tr{
  background-color: #fff;
}
table tr:hover{
  background-color: #fff1b1;
}
table th{
  border: 1px solid #A9A9A9;
  padding: 10px;
  background-color: #d7d7d7;
  text-align: left;
}
/*table th:first-child{
  width: 60px;
}
table th:last-child{
  width: 60px;
}*/
table td{
  border: 1px solid #A9A9A9;
  padding: 5px 10px;
  line-height: inherit;
  background-color: transparent;
  vertical-align: middle;
}
table.no-wrap td, table.no-wrap th{
  white-space: nowrap;
}
.data-table{
  overflow-x: auto;
}
.select2-container--default .select2-selection--single{
  height: auto;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
  padding: 9px 10px 9px 10px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
  margin-top: 25%;
}
.select2-container .select2-selection--multiple{
  min-height: 41px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
  padding: 5px 5px 3px 5px;
}
[aria-disabled="true"]{
  color: #aeaeae !important;
}
[aria-readonly="true"]{
  /*color: #aeaeae !important;*/
}
table form ul.form-row{
  background-color: #f1f1f1;
  padding: 5px 5px 10px 5px;
  width: 100%;
  border: 1px solid #e1e1e1;
}
table form ul li{
  list-style: none;
  padding: 0;
}
table form .form-row, table form .form-item{
  padding: 0;
  margin: 0;
}

.facebook, .fa-facebook-f, .fa-facebook, .fa-square-facebook{
  color: #3b5998;
}
.x-twitter, .fa-x-twitter{
  color:#000000
}
.twitter, .fa-twitter{
  color: #1da1f2;
}
.youtube, .fa-youtube, .fa-square-youtube{
  color: #ff0000;
}
.linkedin, .fa-linkedin, .fa-linkedin-in{
  color: #0a66c2;
}
.instagram, .fa-instagram, .fa-square-instagram{
  color: #c32aa3;
}
.threads, .fa-threads, .fa-square-threads{
  color: #000000;
}
.pinterest, .fa-pinterest, .fa-pinterest-p{
  color: #bd081c;
}
.whatsapp, .fa-whatsapp, .fa-square-whatsapp{
  color: #25d366;
}
.btn .whatsapp, .btn .fa-whatsapp, .btn .fa-square-whatsapp{
  color: inherit;
}
.tumblr, .fa-tumblr, .fa-square-tumblr{
  color: #35465d;
}
.amazon, .fa-amazon{
  color: #ff9900;
}
.telegram, .fa-telegram{
  color: #0088cc;
}

/*material icons*/
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 24
}

/* ------------------------------------
         start responsive styles
---------------------------------------*/
