/*-- MAIN --------------------------------------------------------------------*/

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #f2f5f7;
  font-family: 'Helvetica', sans-serif;
  font-size:15px;
}

section {
    float: left;
    width: 100%;
    display:block
}

.font_helvetica {
  font-family: 'Helvetica', sans-serif !important;
}
.font_raleway {
  font-family: 'Raleway', sans-serif !important;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #97aab8 !important;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #97aab8 !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #97aab8 !important;
}

.placeholder_dark::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
   color: #61707d !important;
   opacity: 1; /* Firefox */
}

.placeholder_dark:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #61707d !important;
}

.placeholder_dark::-ms-input-placeholder { /* Microsoft Edge */
   color: #61707d !important;
}

/* ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 0px;
} */

::-webkit-scrollbar {
  position: fixed;
  width: 6px !important;
  height: 12px !important;
  opacity:.3;
}

::-webkit-scrollbar:hover {
  opacity: 1;
}

::-webkit-scrollbar-track {
  background: #e9eef2 !important;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #97aab8;
}

::-webkit-scrollbar-thumb:horizontal{
  border-radius: 8px;
  background-color: #97aab8;
}

input[type=time]::-webkit-datetime-edit-ampm-field {
  display: none;
}

h1 {
  color: #000;
  font-size: 50px;
  font-weight: bold;
  margin-bottom:0
}

h2 {
  color: #000;
  font-size: 36px;
  font-weight: bold;
  margin-bottom:10px
}

h3 {
  color: #000;
  font-size: 26px;
  font-weight: bold;
  margin-bottom:10px
}

h4 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  margin-bottom:10px
}

h5 {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  margin-bottom:10px
}

h6 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin-bottom:10px
}

a {
  text-decoration: none;
  color: #6793af;
  transition: color 0.2s ease-in-out;
}

a:hover{
  text-decoration: none;
  color: #2885ba;
  transition: color 0.2s ease-in-out;
}

a.status {
  text-decoration: none;
  color: #97aab8 !important;
  transition: color 0.2s ease-in-out;
}

a.text_grey:hover{
  text-decoration: none;
  color: #2885ba !important;
  transition: color 0.2s ease-in-out;
}

a.text_darkgrey {
  text-decoration: none;
  color: #61707d !important;
  transition: color 0.2s ease-in-out;
}

a.text_darkgrey:hover{
  text-decoration: none;
  color: #2885ba !important;
  transition: color 0.2s ease-in-out;
}

a.text_black {
  text-decoration: none;
  color: #000 !important;
  transition: color 0.2s ease-in-out;
}

a.text_black:hover{
  text-decoration: none;
  color: #2885ba !important;
  transition: color 0.2s ease-in-out;
}

a.text_green {
  text-decoration: none;
  color: #06ddc7 !important;
  transition: color 0.2s ease-in-out;
}

a.text_green:hover{
  text-decoration: none;
  color: #2885ba !important;
  transition: color 0.2s ease-in-out;
}

p {
  margin-bottom:0;
}

.ucfirst {
  text-transform: capitalize;
}

.font_brand {
  font-family: Raleway;
}

.font10 {
  font-size: 10px !important;
}

.font11 {
  font-size: 11px !important;
}

.font12 {
  font-size: 12px !important;
}

.font13 {
  font-size: 13px !important;
}

.font14 {
  font-size: 14px !important;
}

.font15 {
  font-size: 15px !important;
}

.font16 {
  font-size: 16px !important;
}

.font18 {
  font-size: 18px !important;
}

.font20 {
  font-size: 20px !important;
  font-weight:100
}

.font22 {
  font-size: 22px !important;
  font-weight:100
}

.font26 {
  font-size: 26px !important;
  font-weight:100
}

.font28 {
  font-size: 28px !important;
  font-weight:100
}

.font36 {
  font-size: 36px !important;
  font-weight:100
}

.font70 {
  font-size: 70px !important;
  font-weight:200
}

.font100 {
  font-size: 100px !important;
  font-weight:200
}

.font200 {
  font-size: 200px !important;
  font-weight:200
}

.font_icon16 {
  font-size: 16px !important;
}

.font_icon18 {
  font-size: 18px !important;
}

.font_icon20 {
  font-size: 20px !important;
}

.font_icon22 {
  font-size: 22px !important;
}

.font_icon26 {
  font-size: 26px !important;
}

.font_icon36 {
  font-size: 36px !important;
}

.font_icon46 {
  font-size: 46px !important;
}

.font_icon70 {
  font-size: 70px !important;
}

.font_icon124 {
  font-size: 124px !important;
}

.textlink {
color:black;
cursor:pointer
}

.textlink:hover {
color:#1758c1;
cursor:pointer
}

/* ---------------------------------------------------------------------------*/


/* BODY ----------------------------------------------------------------------*/

.y_scroll {
  overflow-y: scroll !important;
}

.y_scroll_auto {
  overflow-y: auto !important;
}

.y_scroll_hidden {
  overflow-y: hidden !important;
}

.x_scroll {
  overflow-x: scroll !important;
}

.x_scroll_auto {
  overflow-x: auto !important;
}

.x_scroll_hidden {
  overflow-x: hidden !important;
}

.m1 {
  margin:1px;
}

.autosize {
  resize: none;
  overflow: hidden;
}

.overflow_100vh {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  max-height: calc(100vh - 100px);
  word-wrap: break-word;
}

.greyscale {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity:.5;
  transition: .2s ease-in-out;
}

.greyscale_hover:hover .greyscale {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity:1;
  transition: .2s ease-in-out;
}

.hr_darkgrey {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid #61707d;
}

.banner_top {
  display: none
}

.newsbar {
  height: 100%;
  min-height: 40px;
  display: block;
  text-align: center;
  background: #cce5ff;
  color: #004085;
  padding: .5em 1em
}

.container_fluid_col{
  padding-left:7.5px;
  padding-right:7.5px;
}

.col_margin{
  margin-left:7.5px;
  margin-right:7.5px;
}

.col_padding{
  padding-left:7.5px;
  padding-right:7.5px;
}

.col_padding-0 {
  padding-left:0px;
  padding-right:0px;
}

.mt--20 {
  margin-top: -20px;
}

.mt--40 {
  margin-top: -40px;
}

.mt--60 {
  margin-top: -60px;
}

.mt-40 {
  margin-top: 40px;
}

.border_brand_l {
  border-left: 2px solid #47a8e0 !important;
  height:100%;
}

.border_brand_r {
  border-right: 2px solid #47a8e0 !important;
  height:100%;
}

.radius1em {
  border-radius: 1em !important;
}

.radius2em {
  border-radius: 2em !important;
}

.radius10 {
  border-radius: 10px !important;
}

.vert_line_top {
  position: absolute;
  background: #e9eef2;
  width:2px;
  height:12px;
  top:-11px;
  left:11px
}

.vert_line:first-child .vert_line_top{
  position: absolute;
  width:2px;
  height:12px;
  top:-11px;
  left:11px;
  background: rgb(233,238,242);
  background: -moz-linear-gradient(0deg, rgba(233,238,242,1) 0%, rgba(233,238,242,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(233,238,242,1) 0%, rgba(233,238,242,0) 100%);
  background: linear-gradient(0deg, rgba(233,238,242,1) 0%, rgba(233,238,242,0) 100%);
}

.vert_line_bottom {
  position: absolute;
  background: #e9eef2;
  width:2px;
  height:12px;
  bottom:-11px;
  left:11px
}

.vert_line:last-child .vert_line_bottom{
  position: absolute;
  width:2px;
  height:12px;
  bottom:-11px;
  left:11px;
  background: rgb(233,238,242);
  background: -moz-linear-gradient(180deg, rgba(233,238,242,1) 0%, rgba(233,238,242,0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(233,238,242,1) 0%, rgba(233,238,242,0) 100%);
  background: linear-gradient(180deg, rgba(233,238,242,1) 0%, rgba(233,238,242,0) 100%);
}

.top-200 {
  top:-200px !important;
}

.top-100 {
  top:-100px !important;
}

.top-30 {
  top:-30px !important;
}

.top-20 {
  top:-20px !important;
}

.top-10 {
  top:-10px !important;
}

.top-5 {
  top:-5px !important;
}

.top0 {
  top:0 !important;
}

.top10 {
  top:10px !important;
}

.top8 {
  top:8px !important;
}

.top12 {
  top:12px !important;
}

.top16 {
  top:16px !important;
}

.top18 {
  top:18px !important;
}

.top20 {
  top:20px !important;
}

.top70 {
  top:70px !important;
}

.top50p {
  top:50% !important;
}

.bottom0 {
  bottom:0 !important;
}

.bottom10 {
  bottom:10px !important;
}

.bottom20 {
  bottom:20px !important;
}

.bottom85 {
  bottom:85px !important;
}

.left-20 {
  left:-20px !important;
}

.left-5 {
  left:-5px !important;
}

.left0 {
  left:0 !important;
}

.left10 {
  left:10px !important;
}

.left20 {
  left:20px !important;
}

.left-20 {
  left:-20px !important;
}

.left50 {
  left:50px !important;
}

.left65 {
  left:65px !important;
}

.right-20 {
  right:-20px !important;
}

.right-10 {
  right:-10px !important;
}

.right0 {
  right:0 !important;
}

.right10 {
  right:10px !important;
}

.right20 {
  right:20px !important;
}

.right30 {
  right:30px !important;
}

.right40 {
  right:40px !important;
}

.cardbox {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 6px;
  transition: box-shadow 0.2s ease-in-out;
}

.cardbox:hover {
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0, .02);
  -moz-box-shadow: 0px 0px 10px 5px rgba(0,0,0, .02);
  box-shadow: 0px 0px 10px 5px rgba(0,0,0, .02);
  transition: box-shadow 0.2s ease-in-out;
}

.cardbody {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.cardfooter {
position: absolute;
bottom: 0;
padding: .75em;
width: 100%
}

.cardnumber {
  height: 200px;
  width: 100%;
  padding: 20px;
  transition: background 0.2s ease-in-out;
}

.cardnumber .card{
  width: 150px;
}

.cardnumber h1 {
  font-size:50px;
  vertical-align: middle;
  text-align: center;
}

.cardnumber p {
  margin-left:auto;
  margin-right: auto;
  font-size:15px;
  vertical-align: middle;
  text-align: center;
}

.page_menu {
  float: right;
  display: inline-flex;
}


.lightgreylayer {
  margin: 0 auto 0 auto;
  padding:20px;
  color:#536268;
  height:auto;
  border-radius: 6px;
  background: #e9eef2;
}

.greylayer {
  margin: 0 auto 0 auto;
  padding:20px;
  color:#536268;
  height:auto;
  border-radius: 6px;
  background: #d5dbe0;
}

.darkgreylayer {
  margin: 0 auto 0 auto;
  padding:20px;
  color:#536268;
  height:auto;
  border-radius: 6px;
  background: #c0c8cf;
}

.lightredlayer {
  margin: 0 auto 0 auto;
  padding:20px;
  color:#721c24;
  height:auto;
  border-radius: 6px;
  background: #f7dfe5;
}

.redlayer {
  margin: 0 auto 0 auto;
  padding:20px;
  color:#721c24;
  height:auto;
  border-radius: 6px;
  background: #e6bcc1;
}

.lightgreenlayer {
  margin: 0 auto 0 auto;
  padding:20px;
  color:#155724;
  height:auto;
  border-radius: 6px;
  background: #ccede9;
}

.greenlayer {
  margin: 0 auto 0 auto;
  padding:20px;
  color:#155724;
  height:auto;
  border-radius: 6px;
  background: #06ddc7;
}

.lightyellowlayer {
  margin: 0 auto 0 auto;
  padding:20px;
  color:#a58722;
  height:auto;
  border-radius: 6px;
  background: #fff3cd;
}

.yellowlayer {
  margin: 0 auto 0 auto;
  padding:20px;
  color:#a58722;
  height:auto;
  border-radius: 6px;
  background: #ffd75b;
}

.notification_badge {
  position: absolute;
  top: -4px;
  right: -4px;
  border-radius: 50%;
  font-size: 12px;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content:center;
}

.sticky_label {
  width: 8px;
  height: 12px;
  position: absolute;
  top: 10px;
  right: -8px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  opacity:0.8;
  transition: 0.2s ease-in-out;
}

.sticky_parent:hover .sticky_label {
  transform:scale(1.2);
  transition: 0.2s ease-in-out;
  opacity:1;
}

.padding-0 {
  padding:0;
}

.padding-10 {
  padding:10px;
}

.padding-20 {
  padding:20px;
}

.my0_child:first-child {
  margin-top: 0 !important;
}

.my0_child:last-child {
  margin-bottom: 0 !important;
}

.w_fit {
  width: fit-content;
  width: -webkit-fit-content;
}

.max_width_fit {
  max-width: fit-content !important;
}

.max_w100vw {
  max-width: 100vw !important;
}

.h600 {
  height:600px !important;
}

.min_h550 {
  height:100%;
  min-height:550px !important;
}

.h500 {
  height:500px !important;
}

.min_h500 {
  height:100%;
  min-height:500px !important;
}

.h450 {
  height:450px !important;
}

.min_h450 {
  height:100%;
  min-height:450px !important;
}

.h400 {
  height:400px !important;
}

.min_h400 {
  height:100%;
  min-height:400px !important;
}

.h380 {
  height:380px !important;
}

.h350 {
  height:350px !important;
}

.h340 {
  height:340px !important;
}

.h320 {
  height:320px !important;
}

.h300 {
  height:300px !important;
}

.h280 {
  height:280px !important;
}

.h260 {
  height:260px !important;
}

.h250 {
  height:250px !important;
}

.h240 {
  height:240px !important;
}

.h220 {
  height:220px !important;
}

.min_h200 {
  height:100%;
  min-height:200px !important;
}

.h200 {
  height:200px !important;
}

.h180 {
  height:180px !important;
}

.h150 {
  height:150px !important;
}

.h120 {
  height:120px !important;
}

.h100 {
  height:100px !important;
}

.vh100 {
  height: 100vh !important;
}

.h90 {
  height:90px !important;
}

.h80 {
  height:80px !important;
}

.h70 {
  height:70px !important;
}

.h60 {
  height:60px !important;
}

.min_h50 {
  height:100%;
  min-height:50px !important;
}

.h50 {
  height:50px !important;
}

.h45 {
  height:45px !important;
}

.h40 {
  height:40px !important;
}

.h38 {
  height:38px !important;
}

.h32 {
  height:32px !important;
}

.h30 {
  height:30px !important;
}

.h28 {
  height:28px !important;
}

.h26 {
  height:26px !important;
}

.h20 {
  height:20px !important;
}

.h16 {
  height:16px !important;
}

.h10 {
  height:10px !important;
}

.h6 {
  height:6px !important;
}

.h0 {
  height:0px !important;
}

.max_h50 {
  max-height:50px !important;
}

.max_h500 {
  max-height:500px !important;
}

.min_h32 {
  min-height:32px !important;
}

.min_h38 {
  min-height:38px !important;
}

.max_vh40 {
  max-height: 40vh !important;
}

.max_vh50 {
  max-height: 50vh !important;
}

.min_h60 {
  min-height: 60px !important;
}

.max_vh60 {
  max-height: 60vh !important;
}

.min_vh60 {
  min-height: 60vh !important;
}

.min_h80 {
  min-height: 80px !important;
}

.min_vh80 {
  min-height: 80vh !important;
}

.max_vh80 {
  max-height: 80vh !important;
}

.max_h80 {
  max-height:80px !important;
}

.min_h90 {
  min-height: 90px !important;
}

.min_vh90 {
  min-height: 90vh !important;
}

.max_vh90 {
  max-height: 90vh !important;
}

.vh95 {
  height: 95vh !important;
}

.min_h100 {
  min-height: 100px !important;
}

.min_vh100 {
  min-height: 100vh !important;
}

.min_h120 {
  min-height: 120px !important;
}

.max_vh100 {
  max-height: 100vh !important;
}

.max_w10 {
  max-width: 10px !important;
}

.w0 {
  width: 0px !important;
}

.w6 {
  width: 6px !important;
}

.w16 {
  width: 16px !important;
}

.w20 {
  width: 20px !important;
  min-width: 20px !important;
}

.w30 {
  width: 30px !important;
}

.min_w30 {
  min-width: 30px !important;
}

.w32 {
  width: 32px !important;
}

.max_w-33 {
  max-width: 33.3333%;
}

.w35 {
  width: 35px !important;
}

.w38 {
  width:38px !important;
}

.min_w35 {
  min-width: 35px !important;
}

.max_w40 {
  max-width: 40px !important;
}

.w40 {
  width: 40px !important;
}

.w50 {
  width: 50px !important;
}

.min_w50 {
  min-width: 50px !important;
}

.w60 {
  width: 60px !important;
}

.max_w60 {
  max-width: 60px !important;
}

.w70 {
  width: 70px !important;
}

.w80 {
  width: 80px !important;
}

.max_w80 {
  max-width: 80px !important;
}

.w90 {
  width: 90px !important;
}

.w100 {
  width: 100px !important;
}

.vw100 {
  width: 100vw !important;
}

.min_w100 {
  min-width: 100px !important;
}

.max_w100 {
  max-width: 100px !important;
  width: 100%;
}

.w110 {
  width: 110px !important;
}

.w120 {
  width: 120px !important;
}

.min_w120 {
  min-width: 120px !important;
}

.max_w120 {
  max-width: 120px !important;
  width: 100%;
}

.w130 {
  width: 130px !important;
}

.w140 {
  width: 140px !important;
}

.min_w140 {
  min-width: 140px !important;
}

.max_w140 {
  max-width: 140px !important;
  width: 100%;
}

.w150 {
  width: 150px !important;
}

.w160 {
  width: 160px !important;
}

.min_w160 {
  min-width: 160px !important;
}

.max_w160 {
  max-width: 160px !important;
  width: 100%;
}

.w180 {
  width: 180px !important;
}

.max_w180 {
  max-width: 180px !important;
  width: 100%;
}

.w190 {
  width: 190px !important;
}

.w200 {
  width: 200px !important;
}

.min_w200 {
  min-width: 200px !important;
}

.max_w200 {
  max-width: 200px !important;
  width: 100%;
}

.w210 {
  width: 210px !important;
}

.w220 {
  width: 220px !important;
}

.w230 {
  width: 230px !important;
}

.w240 {
  width: 240px !important;
}

.max_w240 {
  max-width: 240px !important;
  width: 100%;
}

.mw240 {
  max-width: 240px !important;
}

.min_w240 {
  min-width: 240px !important;
}

.w250 {
  width: 250px !important;
}

.mw250 {
  max-width: 250px !important;
}

.max_w260 {
  max-width: 260px !important;
  width: 100%;
}

.w260 {
  width: 260px !important;
}

.mw260 {
  max-width: 260px !important;
}

.w280 {
  width: 280px !important;
}

.w300 {
  width: 300px !important;
}

.max_w300 {
  max-width: 300px !important;
}

.max_w350 {
  max-width: 350px !important;
}

.w350 {
  width: 350px !important;
}

.w360 {
  width: 360px !important;
}

.w380 {
  width: 380px !important;
}

.w400 {
  width: 400px !important;
}

.max_w450 {
  max-width: 450px !important;
}

.w500 {
  width: 500px !important;
}

.max_w500 {
  max-width: 500px !important;
}

.min_w500 {
  min-width: 500px !important;
}

.w540 {
  width: 540px !important;
}

.max_w600 {
  max-width: 600px !important;
}

.w600 {
  width: 600px !important;
}

.w700 {
  width: 700px !important;
}

.max_w800 {
  max-width: 800px !important;
}

.w800 {
  width: 800px !important;
}

.w900 {
  width: 900px !important;
}

.z20 {
  z-index: 20 !important;
}

.lh32 {
  line-height: 32px;
}

.lh38 {
  line-height: 38px;
}


.border_2 {
  border: 2px solid;
}

.border_dashed {
  border: 1px dashed #dee2e6!important;
}

.no_border {
  border:none !important;
}

.border_top_left_radius {
  border-top-left-radius: .25em !important
}

.border_top_right_radius {
  border-top-right-radius: .25em !important
}

.border_bottom_left_radius {
  border-bottom-left-radius: .25em !important
}

.border_bottom_right_radius {
  border-bottom-right-radius: .25em !important
}

.rounded_top {
  border-top-left-radius: .25em !important;
  border-top-right-radius: .25em !important;
}

.rounded_right {
  border-top-right-radius: .25em !important;
  border-bottom-right-radius: .25em !important;
}

.rounded_bottom {
  border-bottom-left-radius: .25em !important;
  border-bottom-right-radius: .25em !important;
}

.rounded_left {
  border-top-left-radius: .25em !important;
  border-bottom-left-radius: .25em !important;
}

.rounded_top_1em {
  border-top-left-radius: 1em !important;
  border-top-right-radius: 1em !important;
}

.rounded_right_1em {
  border-top-right-radius: 1em !important;
  border-bottom-right-radius: 1em !important;
}

.rounded_bottom_1em {
  border-bottom-left-radius: 1em !important;
  border-bottom-right-radius: 1em !important;
}

.rounded_left_1em {
  border-top-left-radius: 1em !important;
  border-bottom-left-radius: 1em !important;
}

.rounded_top_2em {
  border-top-left-radius: 2em !important;
  border-top-right-radius: 2em !important;
}

.rounded_right_2em {
  border-top-right-radius: 2em !important;
  border-bottom-right-radius: 2em !important;
}

.rounded_bottom_2em {
  border-bottom-left-radius: 2em !important;
  border-bottom-right-radius: 2em !important;
}

.rounded_left_2em {
  border-top-left-radius: 2em !important;
  border-bottom-left-radius: 2em !important;
}

.right-80 {
  right:80px;
}

.pointer {
  cursor:pointer !important;
}

.cursor_default {
  cursor:default !important;
}

.cursor_grab {
  cursor:grab !important;
}

.cursor_disabled {
  cursor:not-allowed !important;
  /* pointer-events: none; */
}

.rotate{
    -moz-transition: all .25s linear;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
}

.rotate45 {
  -moz-transform:rotate(45deg);
  -webkit-transform:rotate(45deg);
  transform:rotate(45deg);
}

.rotate180 {
  -moz-transform:rotate(180deg);
  -webkit-transform:rotate(180deg);
  transform:rotate(180deg);
}

.rotate.down{
  -moz-transform:rotate(180deg);
  -webkit-transform:rotate(180deg);
  transform:rotate(180deg);
}

.slide_left40{
  -moz-transform:translateX(-40px);
  -webkit-transform:translateX(-40px);
  transform:translateX(-40px);
  transition: transform .2s ease-in-out;
}

.slide_right40{
  -moz-transform:translateX(40px);
  -webkit-transform:translateX(40px);
  transform:translateX(40px);
  transition: transform .2s ease-in-out;
}

.box_title {
  padding: 13px 10px 8px 10px;
  font-size: 18px;
  min-height:50px;
  border-bottom: 1px solid #e6e6e6;
  color:#38393c;
  font-weight:bold;
}

.box_title_color {
  padding: 13px 10px 8px 10px;
  background-color: #ebebeb;
  height:50px;
  font-size: 18px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom:30px;
  color:#38393c;
  font-weight:bold;
}

.h5title {
  padding: 15px 10px 8px 10px;
  height:50px;
  font-size: 16px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom:40px;
  color:#38393c;
  font-weight:bold;
}

.h5title_color {
  padding: 15px 10px 8px 10px;
  background-color: #ebebeb;
  height:50px;
  font-size: 16px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom:40px;
  color:#38393c;
  font-weight:bold;
}

.title_background {
  background-color: #ebebeb !important;
  vertical-align: middle;
}

.giant_text1 {
  font-size:70px;
  vertical-align: middle;
  text-align: center;
}

.giant_text2 {
  font-size:50px;
  vertical-align: middle;
  text-align: center;
}

.photo_null {
  width:130px;
  height:130px;
  background:#f2f5f7;
  border:1px solid #b9c0cc;
  border-radius:4px;
  text-align: center;
}

.photo_null_small {
  width:40px;
  height:40px;
  text-align:center;
  padding-top:.55em;
  background:#e9eef2;
  color:#9dabb5 !important;
  border-radius:20px;
}

.logo_null_small {
  width:40px;
  height:40px;
  text-align:center;
  padding-top:9px;
  background:#e9eef2;
  color:#9dabb5 !important;
  border-radius:4px;
}

.dropbox_lg {
  border: 2px dashed #ccc;
  padding: 10px;
  height: 200px;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.02);
}

.upload_box {
  width:130px;
  height:130px;
  text-align: center;
  background:#f2f5f7;
  cursor:pointer;
  border:1px solid #b9c0cc;
  border-radius:4px;
  border-style:dashed !important;
  transition: .2s ease-in-out;
}

.upload_box img {
  min-width:115px;
  width:115px;
  height:115px;
  border-radius: .25rem;
  object-fit:cover;
}

.upload_box:hover {
  background:#e9ecef;
  transition: .2s ease-in-out;
}

.upload_file_box {
  width:60px;
  height:60px;
  line-height: 60px;
  text-align: center;
  background:#f2f5f7;
  cursor:pointer;
  border:1px solid #b9c0cc;
  border-radius:.5rem;
  border-style:dashed !important;
  transition: .2s ease-in-out;
}

.upload_file_box:hover {
  background:#e9ecef;
  transition: .2s ease-in-out;
}

.file_card {
  position: relative;
  vertical-align: middle;
  display: flex;
  border: 1px solid #e9ecef;
  border-radius: .5rem;
  padding: 8px 16px 8px 12px;
  height: 60px;
}

.file_card img {
  max-width:280px;
  max-height: 60px;
  height: auto !important;
  border-radius: .5rem;
  margin: -1px 0 0 -1px
}

.file_card:hover {
  background-color: rgba(199, 209, 216,.2);
  transition: background-color 0.2s ease-in-out;
}

.file_card .remove_file {
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.file_card:hover .remove_file {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.input_title {
  font-size: 15px;
  font-weight: bold;
  color: #6c7984 !important;
  /* margin-bottom:0px; */
}

.form_top {
  border-radius: .25rem .25rem 0 0 !important;
}

.form_top.form_left {
  border-radius: 0 0 0 .25rem !important;
}

.form_top.form_right {
  border-radius: 0 0 .25rem 0 !important;
}

.form_middle {
  border-radius: 0 !important;
}

.form_bottom {
  border-radius: 0 0 .25rem .25rem !important;
}

.form_bottom.form_left {
  border-radius: 0 0 0 .25rem !important;
}

.form_bottom.form_right {
  border-radius: 0 0 .25rem 0 !important;
}

.form_top_md {
  text-align: center;
  font-size: 18px;
  height: 44px;
  border-radius: .25rem .25rem 0 0 !important;
}

.form_middle_md {
  text-align: center;
  font-size: 18px;
  height: 44px;
  margin-top: -16px;
  border-radius: 0 !important;
}

.form_bottom_md {
  text-align: center;
  font-size: 18px;
  height: 44px;
  margin-top: -16px;
  border-radius: 0 0 .25rem .25rem !important;
}

.field_active_box {
  width: 100% !important;
  position: relative;
}

.box_grey {
  background-color: #f2f5f7;
  padding:8px 12px;
  border-radius: .25rem;
}

.field_active {
  background-color: #f2f5f7;
  border-radius: .25rem;
  padding:8px 12px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.field_active[data-placeholder]:not(:has(.field_text:not(:empty))):not(.hide_placeholder)::before {
  content: attr(data-placeholder);
  color: #97aab8;
}

.field_inactive {
  background-color: #f2f5f7;
  border-radius: .25rem;
  padding:8px 12px;
  transition: background-color 0.2s ease-in-out;
}

.field_inactive_light {
  background-color: #f7fafc;
  border-radius: .25rem;
  padding:8px 12px;
  transition: background-color 0.2s ease-in-out;
}

.field_active_rounded {
  background-color: #f2f5f7;
  border-radius: 2rem;
  padding:8px 12px;
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.field_active:hover, .field_inactive:hover, .field_inactive_light:hover, .field_active_rounded:hover {
  background-color: #e9ecef;
  transition: background-color 0.2s ease-in-out;
}

.icon_hover_box .icon_hover {
  opacity: 0;
}

.icon_hover_box:hover .icon_hover {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.field_active .icon_hover, .field_inactive .icon_hover, .box_active_stroke .icon_hover, .box_active_light_sm .icon_hover  {
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.field_active:hover .icon_hover, .field_inactive:hover .icon_hover, .box_active_stroke:hover .icon_hover, .box_active_light_sm:hover .icon_hover {
  opacity: 1;
  cursor:pointer;
  transition: opacity 0.2s ease-in-out;
}


.field_icon_active {
  background-color: #f2f5f7;
  border-radius: .25rem;
  padding:5px 12px !important;
  transition: background-color 0.2s ease-in-out;
}

.field_icon_active_rounded {
  background-color: #f2f5f7;
  border-radius: 2rem;
  padding:5px 12px !important;
  transition: background-color 0.2s ease-in-out;
}

.field_icon_active:hover, .field_icon_active_rounded:hover {
  background-color: #e9ecef;
  transition: background-color 0.2s ease-in-out;
}

.field_icon_active i {
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.field_icon_active:hover i {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.box_active {
  border-radius: .25rem;
  padding:8px 8px 8px 8px !important;
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.box_active_sm {
  border-radius: .25rem;
  padding:4px 8px 4px 8px !important;
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.box_active_rounded {
  border-radius: 2rem;
  padding:8px 8px 8px 8px !important;
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.box_active_rounded_sm {
  border-radius: 2rem;
  padding:4px 8px 4px 8px !important;
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.box_active:hover, .box_active_rounded:hover, .box_active_sm:hover, .box_active_rounded_sm:hover {
  background-color: #f2f5f7;
  transition: background-color 0.2s ease-in-out;
}

.box_active_stroke {
  border: 2px solid transparent;
  border-radius: .25rem;
  padding:8px 8px 8px 8px !important;
  cursor:pointer;
  transition: border-color 0.2s ease-in-out;
}

.box_active_stroke:hover {
  border: 2px solid #47a8e0;
  transition: border-color 0.2s ease-in-out;
}

.hovered {
    border: 2px solid #47a8e0;
    transition: border-color 0.2s ease-in-out;
  }

  .draggable {
    cursor: grab;
  }

.box_active_light {
  border-radius: .25rem;
  padding:8px 8px 8px 8px !important;
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.box_active_rounded_light {
  border-radius: 2rem;
  padding:8px 8px 8px 8px !important;
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.box_active_light:hover, .box_active_rounded_light:hover {
  background-color: rgba(255, 255, 255,.4);
  transition: background-color 0.2s ease-in-out;
}

.box_active_light_sm {
  border-radius: .25rem;
  padding:0 .5em;
  /* line-height: 2em; */
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.box_active_rounded_light_sm {
  border-radius: 2rem;
  padding:.5em .5em !important;
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.box_active_light_sm:hover, .box_active_rounded_light_sm:hover {
  background-color: rgba(255, 255, 255,.4);
  transition: background-color 0.2s ease-in-out;
}

.box_disabled {
  cursor:not-allowed;
  color: #97aab8 !important;
}

.icon_active {
  min-width:38px;
  max-height:38px;
  text-align: center;
  color:#9dabb5 !important;
  border-radius: 30px;
  padding:.5em .5em !important;
  cursor:pointer;
  background: transparent;
  position: relative;
  transition: .2s ease-in-out;
}

.icon_active:hover {
  color: #6793af !important;
  transition: .2s ease-in-out;
}

.icon_active:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #9dabb5 !important;
  min-width:38px;
  max-height:38px;
  border-radius: 30px;
  padding:.5em .5em !important;
  background: rgba(199, 209, 216,.2);
  z-index: 0;
  transform: scale(0);
  transition: .2s ease-in-out;
  opacity: 1;
}

.icon_active:hover:before {
  transform: scale(1);
  opacity: 1;
}

.icon_active_sm {
  min-width:32px;
  max-height:32px;
  text-align: center;
  color:#9dabb5 !important;
  border-radius: 30px;
  padding:.35em .5em !important;
  cursor:pointer;
  background: transparent;
  position: relative;
  transition: .2s ease-in-out;
}

.icon_active_sm:hover {
  color: #6793af !important;
  transition: .2s ease-in-out;
}

.icon_active_sm:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #9dabb5 !important;
  min-width:32px;
  max-height:32px;
  border-radius: 30px;
  padding:.35em .5em !important;
  background: rgba(199, 209, 216,.2);
  z-index: 0;
  transform: scale(0);
  transition: .2s ease-in-out;
  opacity: 1;
}

.icon_active_sm:hover:before {
  transform: scale(1);
  opacity: 1;
}

.btn_icon_xs {
  height: 18px;
  word-break: normal;
}

.btn_icon_sm {
  height: 26px;
  float:left;
  word-break: normal;
}

/* .btn_icon_sm {
  min-width:32px;
  max-height:32px;
  text-align: center;
  color:#9dabb5 !important;
  background-color: rgba(199, 209, 216,.3);
  border-radius: 30px;
  padding:.3em .3em !important;
  cursor:pointer;
  word-break: normal;
  transition: background-color 0.2s ease-in-out;
}

.btn_icon_sm:hover {
  color: #6793af !important;
  background-color: rgba(199, 209, 216,.2);
  border-radius: 30px;
  transition: background-color 0.2s ease-in-out;
} */

.btn_icon {
  min-width:38px;
  height:38px;
  display: inline-flex;
  align-items: center;
  color:#9dabb5 !important;
  background-color: rgba(199, 209, 216,.3);
  border-radius: 30px;
  padding:.5em .5em;
  cursor:pointer;
  word-break: normal;
  transition: background-color 0.2s ease-in-out;
}

.btn_icon:hover {
  color: #6793af !important;
  background-color: rgba(199, 209, 216,.5);
  border-radius: 30px;
  transition: background-color 0.2s ease-in-out;
}

.btn_icon_lg {
  height: 1.5rem;
  float:left;
  word-break: normal;
}

.btn_icon_xl {
  height: 2.5rem;
  float:left;
  word-break: normal;
}

.icon_active_bg_xs {
  min-width:22px;
  height:22px;
  align-items: center;
  justify-content: center;
  color:#9dabb5 !important;
  background-color: rgba(233, 238, 242, 1);
  border-radius: 22px;
  padding:.07em .25em;
  cursor:pointer;
  transition: 0.2s ease-in-out;
  z-index:1000;
}

.icon_active_bg_xs:hover {
  color: #6793af;
  background-color: rgba(233, 238, 242, 1);
  border-radius: 22px;
  transform:scale(1.1);
  transition: 0.2s ease-in-out;
  z-index:1000;
}

.icon_active_bg_sm {
  min-width:32px;
  height:32px;
  align-items: center;
  justify-content: center;
  display: flex;
  color:#9dabb5 !important;
  background-color: rgba(199, 209, 216,.3);
  border-radius: 30px;
  padding:.3em .3em;
  cursor:pointer;
  transition: 0.2s ease-in-out;
}

.icon_active_bg_sm:hover {
  color: #6793af;
  background-color: rgba(199, 209, 216,.5);
  border-radius: 30px;
  transform:scale(1.1);
  transition: 0.2s ease-in-out;
}

.icon_active_bg_md {
  min-width:38px;
  height:38px;
  align-items: center;
  justify-content: center;
  display: flex;
  color:#9dabb5 !important;
  background-color: rgba(199, 209, 216,.3);
  border-radius: 30px;
  padding:.3em .3em;
  cursor:pointer;
  transition: 0.2s ease-in-out;
}

.icon_active_bg_md:hover {
  color: #6793af !important;
  background-color: rgba(199, 209, 216,.5);
  border-radius: 30px;
  transform:scale(1.1);
  transition: 0.2s ease-in-out;
}

.close_icon i:hover::before {
  transform: rotate(90deg);
}

.close_icon i:before {
  display: inline-block;/* mandatory to be able to use transform */
  transition: .2s all;
}

.alert.alert_small {
  padding: .5rem .5rem !important;
}

.alert_small .close {
  padding: .5rem .5rem !important;
}

.alert_sticky {
  position:fixed;
  bottom:10px;
  width:100%;
  max-width:500px;
  left: 0;
  right: 0;
  margin: auto;
  z-index:3000;
}

.alert_sticky_top {
  position:fixed;
  top:70px;
  width:100%;
  max-width:500px;
  left: 0;
  right: 0;
  margin: auto;
  z-index:3000;
}

.avatars {
  display: inline-flex;
  padding-left: 0;
  list-style: none;
  margin: 0;
  -ms-flex-align: center!important;
  align-items: center!important;
}

.avatars li:nth-child(n+2) {
  margin-left: -10px;
}

.avatars.avatars_sm li:nth-child(n+2) {
  margin-left: -8px;
}

.avatar_box {
  display: flex;
  -ms-flex-align: center!important;
  align-items: center!important;
}

.avatar_bg {
  color: #fff !important;
  background-color:#93b4c9 !important;
  transition: background-color 0.2s ease-in-out;
}

.avatar_bg_dark {
  color: #fff !important;
  background-color:#7e91a3 !important;
  border: 2px solid #5d7285 !important;
  transition: background-color 0.2s ease-in-out;
}

.avatar_xs {
  min-width: 1.6rem !important;
  width: 1.6rem !important;
  height: 1.6rem !important;
  line-height: 1.4rem;
  object-fit: cover;
  font-weight: normal;
  text-align: center;
  padding-top: 0px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  background-color:#fff;
  transition: background-color 0.2s ease-in-out;
}

.avatar_sm {
  min-width: 2rem !important;
  width: 2rem !important;
  height: 2rem !important;
  object-fit: cover;
  font-weight: normal;
  text-align: center;
  line-height: 1.9rem;
  font-size: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  background-color:#fff;
  transition: background-color 0.2s ease-in-out;
}

.avatar {
  min-width: 2.75em !important;
  width: 2.75em !important;
  height: 2.75em !important;
  line-height: 1em;
  object-fit: cover;
  font-weight: normal;
  text-align: center;
  line-height:36px;
  padding-top: 0px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  background-color:#fff;
  transition: background-color 0.2s ease-in-out;
}

.avatar_lg {
  min-width: 90px !important;
  width: 90px !important;
  height: 90px !important;
  line-height: 86px;
  object-fit: cover;
  font-weight: normal;
  text-align: center;
  padding-top: 0px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  background-color:#fff;
  transition: background-color 0.2s ease-in-out;
}

.avatar_xl {
  min-width: 132px !important;
  width: 132px !important;
  height: 132px !important;
  line-height: 110px;
  object-fit: cover;
  font-weight: normal;
  text-align: center;
  padding-top: 0px;
  border-radius: 50%;
  border: 4px solid #fff;
  color: #fff;
  background-color:#fff;
  transition: background-color 0.2s ease-in-out;
}

.avatar_square_xs {
  min-width: 1.6rem !important;
  width: 1.6rem !important;
  height: 1.6rem !important;
  line-height: 1.4rem;
  object-fit: contain;
  font-weight: normal;
  text-align: center;
  border-radius: .5rem;
  border: 2px solid #fff;
  color: #fff;
  background-color:#fff;
  transition: background-color 0.2s ease-in-out;
}

.avatar_square_sm {
  min-width: 30px !important;
  width: 30px !important;
  height: 30px !important;
  object-fit: contain;
  font-weight: normal;
  text-align: center;
  line-height:28px;
  padding-top: 0px;
  border-radius: 6px;
  border: 2px solid #fff;
  color: #fff;
  background-color:#fff;
  transition: background-color 0.2s ease-in-out;
}

.avatar_square {
  min-width: 38px !important;
  width: 38px !important;
  height: 38px !important;
  object-fit: contain;
  font-weight: normal;
  text-align: center;
  line-height:34px;
  padding-top: 0px;
  border-radius: 6px;
  border: 2px solid #fff;
  color: #fff;
  background-color:#fff;
  transition: background-color 0.2s ease-in-out;
}

.avatar_square_md {
  min-width: 60px !important;
  width: 60px !important;
  height: 60px !important;
  object-fit: contain;
  font-weight: normal;
  text-align: center;
  line-height:36px;
  padding-top: 0px;
  border-radius: 6px;
  border: 2px solid #fff;
  color: #fff;
  background-color:#fff;
  transition: background-color 0.2s ease-in-out;
}

.avatar_square_lg {
  min-width: 90px !important;
  width: 90px !important;
  height: 90px !important;
  object-fit: contain;
  font-weight: normal;
  text-align: center;
  line-height:82px;
  font-size:1.5rem;
  border-radius: 10px;
  border: 4px solid #fff;
  color: #fff;
  background-color:#fff;
  transition: background-color 0.2s ease-in-out;
}

.avatar_square_xl {
  min-width: 132px !important;
  width: 132px !important;
  height: 132px !important;
  object-fit: contain;
  font-weight: normal;
  text-align: center;
  line-height:116px;
  font-size:2rem;
  border-radius: 16px;
  border: 8px solid #fff;
  color: #fff;
  background-color:#fff;
  transition: background-color 0.2s ease-in-out;
}

.avatar_xs:hover, .avatar_sm:hover, .avatar:hover, .avatar_lg:hover, .avatar_xl:hover, .avatar_square_xs:hover, .avatar_square_sm:hover, .avatar_square:hover, .avatar_square_lg:hover, .avatar_square_xl:hover, {
  color:#fff !important;
  background-color:#7798ad;
  transition: background-color 0.2s ease-in-out;
}

.avatar_xs.avatar_select2, .avatar_square_xs.avatar_select2 {
  line-height: 1em !important;
  padding-top: 4px !important;
}

.avatar_sm.avatar_select2, .avatar_square_sm.avatar_select2 {
  line-height: 1em !important;
  padding-top: 7px !important;
}

.top_menu {
  width:100%;
  min-height:60px;
  height:60px;
  display: flex;
  background-color: #e9eef2;
  color: #97aab8 !important;
  padding: 1rem .5rem .5rem .5rem;
}

.top_menu2 {
  width:100%;
  min-height:120px;
  height:120px;
  display: flex;
  background-color: #e9eef2;
  color: #97aab8 !important;
  padding: 1rem .5rem .5rem .5rem;
}

.input_cc_icon {
  position: absolute;
  right: 10px;
  font-size: 26px;
  z-index: 10;
}

.input_cc_icon_sm {
  position: absolute;
  top:8px;
  right: 10px;
  z-index: 10;
}

.zoom20 {
  transform:scale(1.2);
  transition: 0.2s ease-in-out;
}

.zoom_hover {
  transition: 0.2s ease-in-out;
}

.zoom_hover:hover {
  transform:scale(1.1);
  transition: 0.2s ease-in-out;
}

.loading_brand{
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content:center;
  -webkit-box-shadow: 0px 0px 35px 35px rgba(0,0,0, .1);
  -moz-box-shadow: 0px 0px 35px 35px rgba(0,0,0, .1);
  box-shadow: 0px 0px 35px 35px rgba(0,0,0, .1);
  -webkit-animation:spin 1.5s linear infinite;
  -moz-animation:spin 1.5s linear infinite;
  animation:spin 1.5s linear infinite;
}

@-moz-keyframes spin {
    100% { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform:rotate(360deg);
    }
}


/* Nascondi le frecce di input number in tutti i browser */
.quantity_input::-webkit-outer-spin-button,
.quantity_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity_input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}


/*--/ BODY -------------------------------------------------------------------*/

/*-- INFINITE CAROUSEL -------------------------------------------------------*/

/* Styling */
.slider {
  width: 100%;
	margin: auto;
	overflow:hidden;
	position: relative;
}

 .slider::before,.slider::after {
	content: "";
	height: 100%;
	position: absolute;
	width: 100px;
	z-index: 2;
  background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}

.slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.slider::before {
	left: 0;
	top: 0;
}

.slide-track {
	animation: scroll 40s infinite linear;
	display: flex;
	width: 100%;
}

.slide-item {
	height: 100px;
}

/* Animation */
@keyframes scroll {
	0% {
    transform: translateX(0);
  }
	100% {
    transform: translateX(calc(-250px * 7));
  }
}

/*--/ INFINITE CAROUSEL ------------------------------------------------------*/

/*-- SEARCH ------------------------------------------------------------------*/

.search_box {
  background-color: #fff;
  border: 1px solid #e9eef2;
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius:30px;
  height: 38px;
  width: 100%;
}

.search_box input{
  max-width:250px;
  width: 100vw;
  height: 35px;
  padding:0 20px;
  margin-top:1px;
  border:none;
  border-radius: 24px;
  padding-right: 50px;
}

.search_box2 {
  background-color: transparent;
  border:none;
  height:70px;
  max-width: 300px;
  font-size:18px;
}

.table_right_box {
  position: absolute;
  top:35px;
  right:15px;
  background: #fff;
  z-index:3
}

.no_focus:focus {
  outline: none !important;
}

.btn_search_md {
  position: absolute;
  right: 0;
  top:0;
}

.btn_search_lg {
  position: absolute;
  right: 0;
  top:6px
}

textarea.html_code {
  width: 100%;
  border-radius: .25em;
  padding: 1em;
  font-size: 13px;
  border: none;
  background-color: #f2f5f7;
  color: #6c7984;
  font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
}

/*--/ SEARCH -----------------------------------------------------------------*/


/*-- BUTTONS -----------------------------------------------------------------*/

.btn_xs {
  height:28px !important;
  padding: .15em .75em !important;
}

.btn_sm {
  height:32px !important;
  padding: .25em .75em !important;
}

.btn_rounded {
  border-radius: 40px !important;
}

.btn_brand {
  padding: .5em .75em .5em .75em;
  border-radius: 4px;
  text-align: center;
  color:#fff !important;
  background-color: #47a8e0 !important;
  transition: 0.2s ease-in-out;
}

.btn_brand_rounded {
  padding: 6px 15px 6px 15px;
  border-radius: 30px;
  text-align: center;
  color:#fff;
  background-color: #47a8e0;
  transition: 0.2s ease-in-out;
}

.btn_brand:hover, .btn_brand_rounded:hover {
  color: #fff !important;
  background-color: #47bee0 !important;
  transition: 0.2s ease-in-out;
}

.btn_white_outline {
  padding: 8px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #d5dbe0;
  color: #536268;
  transition: 0.2s ease-in-out;
}

.btn_white_outline:hover {
  border: 1px solid #97aab8;
  color: #536268;
  transition: 0.2s ease-in-out;
}

.btn_white_alpha {
  padding: 6px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.btn_white_rounded_alpha {
  padding: 6px 15px 6px 15px;
  border-radius: 20px;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.btn_white_alpha:hover, .btn_white_rounded_alpha:hover {
  background-color: rgba(255, 255, 255,.1);
  transition: 0.2s ease-in-out;
}

.btn_brand_alpha {
  padding: 6px 15px 6px 15px;
  text-align: center;
  background-color: rgba(71, 168, 224,.2);
  transition: 0.2s ease-in-out;
}

.btn_brand_rounded_alpha {
  padding: 6px 15px 6px 15px;
  border-radius: 20px;
  text-align: center;
  background-color: rgba(71, 168, 224,.2);
  transition: 0.2s ease-in-out;
}

.btn_brand_transparent {
  padding: 6px 15px 6px 15px;
  text-align: center;
  color: #47a8e0;
  transition: 0.2s ease-in-out;
}

.btn_brand_alpha:hover, .btn_brand_rounded_alpha:hover, .btn_brand_transparent:hover {
  color: #fff;
  background-color: #455563;
  transition: 0.2s ease-in-out;
}

.btn_blue {
  padding: 6px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  color:#fff;
  background-color: #93b4c9;
  transition: 0.2s ease-in-out;
}

.btn_blue:hover {
  color:#fff;
  background-color: #82a4ba;
  transition: 0.2s ease-in-out;
}

.btn_blue.active {
  color:#fff;
  background-color: #7696ab;
  transition: 0.2s ease-in-out;
}

.btn_green {
  padding: 6px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  color:#fff;
  background-color: #06ddc7;
  transition: 0.2s ease-in-out;
}

.btn_green:hover {
  color:#fff;
  background-color: #04c4b1;
  transition: 0.2s ease-in-out;
}

.btn_green_outline {
  padding: 8px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  color:#06ddc7;
  border: 1px solid #06ddc7;
  transition: 0.2s ease-in-out;
}

.btn_lightgreen {
  color:#155724;
  border-radius: 4px;
  text-align: center;
  background-color: #ccede9;
  transition: 0.2s ease-in-out;
}

.btn_yellow {
  padding: 8px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  color:#fff;
  background-color: #FECF2A;
  transition: 0.2s ease-in-out;
}

.btn_yellow_rounded {
  padding: 8px 15px 6px 15px;
  border-radius: 20px;
  text-align: center;
  color:#fff;
  background-color: #FECF2A;
  transition: 0.2s ease-in-out;
}

.btn_yellow:hover, .btn_yellow_rounded:hover {
  color:#fff;
  background-color: #f5c311;
  transition: 0.2s ease-in-out;
}

.btn_orange {
  padding: 8px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  color:#fff;
  background-color: #fea62a;
  transition: 0.2s ease-in-out;
}

.btn_orange_rounded {
  padding: 8px 15px 6px 15px;
  border-radius: 20px;
  text-align: center;
  color:#fff;
  background-color: #fea62a;
  transition: 0.2s ease-in-out;
}

.btn_orange:hover, .btn_orange_rounded:hover {
  color:#fff;
  background-color: #e68517;
  transition: 0.2s ease-in-out;
}


.btn_grey {
  padding: 6px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  color:#536268 !important;
  background-color: #d5dbe0;
  transition: 0.2s ease-in-out;
}

.btn_grey:hover {
  background-color: #e9eef2;
  transition: 0.2s ease-in-out;
}

.btn_lightgrey {
  padding: 6px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  color:#536268;
  background-color: #e9eef2;
  transition: 0.2s ease-in-out;
}

.btn_lightgrey:hover {
  background-color: #d5dbe0;
  color:#536268;
  transition: 0.2s ease-in-out;
}

.btn_lightgrey.active {
  background-color: #d5dbe0;
  transition: 0.2s ease-in-out;
}

.btn_lightgrey2 {
  padding: 8px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  color:#536268;
  background-color: #f2f5f7;
  transition: 0.2s ease-in-out;
}

.btn_lightgrey2:hover {
  background-color: #edf2f5;
  transition: 0.2s ease-in-out;
}

.btn_lightgrey2.active {
  background-color: #e9eef2;
  transition: 0.2s ease-in-out;
}

.btn_darkgrey {
  padding: 8px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  color:#fff !important;
  background-color: #97aab8 !important;
  transition: 0.2s ease-in-out;
}

.btn_darkgrey:hover {
  background-color: #b0c3d1 !important;
  transition: 0.2s ease-in-out;
}

.btn_darkgrey2 {
  padding: 8px 15px;
  border-radius: 4px;
  text-align: center;
  color:#fff !important;
  background-color: #5d7285 !important;
  transition: 0.2s ease-in-out;
}

.btn_darkgrey2:hover {
  background-color: #7e91a3 !important;
  transition: 0.2s ease-in-out;
}

.box_title_grey:hover {
  background-color: #b0c3d1;
  transition: 0.2s ease-in-out;
}

.btn_white {
  padding: 8px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  color:#9dabb5;
  background-color: #fff;
  transition: background-color 0.2s ease-in-out;
}

.btn_white:hover {
  color:#47a8e0;
  transition: background-color 0.2s ease-in-out;
}

.btn_red {
  padding: 8px 15px 6px 15px;
  border-radius: 4px;
  text-align: center;
  color:#fff;
  background-color: #DF547A;
  transition: 0.2s ease-in-out;
}

.btn_red_rounded {
  padding: 8px 15px 6px 15px;
  border-radius: 20px;
  text-align: center;
  color:#fff;
  background-color: #DF547A;
  transition: 0.2s ease-in-out;
}

.btn_red:hover, .btn_red_rounded:hover {
  color:#fff;
  background-color: #b22e52;
  transition: 0.2s ease-in-out;
}

.btn_red_outline {
  padding: 8px 15px 6px 15px;
  text-align: center;
  color:#DF547A;
  border:1px solid #DF547A;
  background-color: transparent;
  transition: 0.2s ease-in-out;
}

.btn_red_outline:hover {
  color:#fff;
  background-color: #DF547A;
  transition: 0.2s ease-in-out;
}

.btn_options {
  color: #6c757d;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  float:right;
  align-items: center;
  transition: 0.2s ease-in-out;
}

.btn_options:hover {
  color: #6c757d;
  background: #e9eef2;
  transition: 0.2s ease-in-out;
}

.btn_group_rounded {
  background: #f2f5f7;
  border-radius: 40px;
}

.btn_group_rounded>.btn_group_rounded:not(:first-child)>.btn, .btn_group_rounded>.btn:not(:first-child) {
border-top-left-radius: 40px !important;
border-bottom-left-radius: 40px !important;
}

.btn_group_rounded>.btn_group_rounded:not(:last-child)>.btn, .btn_group_rounded>.btn:not(:last-child):not(.dropdown-toggle) {
border-top-right-radius: 40px !important;
border-bottom-right-radius: 40px !important;
}

.btn_group_rounded .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group, .btn-group-vertical .btn+.btn, .btn-group-vertical .btn+.btn-group, .btn-group-vertical .btn-group+.btn, .btn-group-vertical .btn-group+.btn-group {
margin-left: 0px !important;
}

.btn_toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center

}
.btn_toggle span:first-child {
  display: inline-flex;
  align-items: center;
}

.btn_toggle_lightgrey {
  padding: .5em .75em;
  text-align: center;
  color:#9dabb5 !important;
  border: 1px solid #e9eef2;
  transition: 0.2s ease-in-out;
}

.btn_toggle_lightgrey:hover {
  color:#97aab8 !important;
  background-color: #f2f5f7 !important;
  border: 1px solid #e9eef2;
  transition: 0.2s ease-in-out;
}

.btn_toggle_lightgrey:not(:disabled):not(.disabled).active, .btn_toggle_lightgrey:not(:disabled):not(.disabled):active, .show>.btn_toggle_lightgrey.dropdown-toggle {
  color:#97aab8 !important;
  background-color: #e9eef2 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_grey {
  padding: .5em .75em;
  text-align: center;
  color:#9dabb5 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_grey:hover {
  color:#97aab8 !important;
  background-color: #e9eef2 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_grey:not(:disabled):not(.disabled).active, .btn_toggle_grey:not(:disabled):not(.disabled):active, .show>.btn_toggle_grey.dropdown-toggle {
  color:#fff !important;
  background-color: #97aab8 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_darkgrey {
  padding: .5em .75em;
  text-align: center;
  color:#9dabb5 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_darkgrey:hover {
  color:#97aab8 !important;
  background-color: #e9eef2 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_darkgrey:not(:disabled):not(.disabled).active, .btn_toggle_darkgrey:not(:disabled):not(.disabled):active, .show>.btn_toggle_darkgrey.dropdown-toggle {
  color:#fff !important;
  background-color: #61707d !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_yellow {
  padding: .5em .75em;
  text-align: center;
  color:#9dabb5 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_yellow:hover {
  color:#a58722 !important;
  background-color: #fff3cd !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_yellow:not(:disabled):not(.disabled).active, .btn_toggle_yellow:not(:disabled):not(.disabled):active, .show>.btn_toggle_yellow.dropdown-toggle {
  color:#8a6b0e !important;
  background-color: #ffd75b !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_orange {
  padding: .5em .75em;
  text-align: center;
  color:#9dabb5 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_orange:hover {
  color:#a58722 !important;
  background-color: #fcdcca !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_orange:not(:disabled):not(.disabled).active, .btn_toggle_orange:not(:disabled):not(.disabled):active, .show>.btn_toggle_orange.dropdown-toggle {
  color:#3d0a0f !important;
  background-color: #fea62a !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_green {
  padding: .5em .75em;
  text-align: center;
  color:#9dabb5 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_green:hover {
  color:#155724 !important;
  background-color: #ccede9 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_green:not(:disabled):not(.disabled).active, .btn_toggle_green:not(:disabled):not(.disabled):active, .show>.btn_toggle_green.dropdown-toggle {
  color:#0d4019 !important;
  background-color: #7ccfbf !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_stroke_green {
  padding: .5em .75em;
  text-align: center;
  color:#9dabb5 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_stroke_green:hover {
  color:#155724 !important;
  border:2px solid #ccede9 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_stroke_green:not(:disabled):not(.disabled).active, .btn_toggle_stroke_green:not(:disabled):not(.disabled):active, .show>.btn_toggle_stroke_green.dropdown-toggle {
  color:#0d4019 !important;
  border:2px solid #7ccfbf !important;
}

.btn_toggle_red {
  padding: .5em .75em;
  text-align: center;
  color:#9dabb5 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_red:hover {
  color:#721c24 !important;
  background-color: #edb2b9 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_red:not(:disabled):not(.disabled).active, .btn_toggle_red:not(:disabled):not(.disabled):active, .show>.btn_toggle_red.dropdown-toggle {
  color:#3d0a0f !important;
  background-color: #df547a !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_brand {
  padding: .5em .75em;
  text-align: center;
  color:#9dabb5 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_brand:hover {
  color:#fff !important;
  background-color: #cae0ed !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_brand:not(:disabled):not(.disabled).active, .btn_toggle_brand:not(:disabled):not(.disabled):active, .show>.btn_toggle_brand.dropdown-toggle {
  color:#fff !important;
  background-color: #47a8e0 !important;
  transition: 0.2s ease-in-out;
}

.btn_toggle_grey:disabled, .btn_toggle_grey[disabled=disabled] {
  cursor: default !important;
}

.badge_xs {
  padding: .15em .4em;
}

.badge_big {
  padding: .55em .4em;
  font-size: 100%;
}


.tagbar_xs {
  display: inline-flex;
  align-items: center;
  font-size:10px;
  height: 14px;
  padding: 0 .75em;
  border-radius: 1em;
}


.tagbar_sm {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 .75em;
  border-radius: 1em;
}

.tagbar_md {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 .75em;
  border-radius: 1em;
}

.tagbar_lg {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 .75em;
  border-radius: 1em;
}

.tag_palette {
  width:100%;
  height: 100%;
}

/*--/ BUTTONS ----------------------------------------------------------------*/


/*-- COLORS ------------------------------------------------------------------*/

.hover_grey:hover {
  color: #b0c3d1 !important;
  transition: 0.2s ease-in-out;
}

.hover_dark:hover {
  color: #212529 !important;
  transition: 0.2s ease-in-out;
}

.text_strike {
  text-decoration: line-through;
}

.text_active {
  color: #6793af;
  transition: color 0.2s ease-in-out;
}

.text_active:hover{
  color: #2885ba;
  transition: color 0.2s ease-in-out;
}

.text_brand {
  color: #47a8e0 !important;
  transition: 0.2s ease-in-out;
}

.text_brand.active {
  color: #47a8e0 !important;
  transition: 0.2s ease-in-out;
}

.text_brand_gradient {
  background: -webkit-linear-gradient(0deg,#06d1dd, #006ede);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hover_brand {
  transition: 0.2s ease-in-out;
}

.text_brand:hover, .hover_brand:hover, .hover_brand:hover i {
  color: #47bee0 !important;
  transition: 0.2s ease-in-out;
}

.hover_stroke_brand {
  transition: 0.2s ease-in-out;
}

.hover_stroke_brand:hover {
  border: 1px solid #47bee0;
  transition: 0.2s ease-in-out;
}

.text_blue {
  color: #296a8f !important;
}

.hover_blue {
  transition: 0.2s ease-in-out;
}

.hover_blue:hover {
  color: #296a8f !important;
  transition: 0.2s ease-in-out;
}

.text_darkblue {
  color: #405569 !important;
}

.text_lightblue {
  color: #69a4c9 !important;
}

.hover_lightblue {
  transition: 0.2s ease-in-out;
}

.hover_lightblue:hover {
  color: #69a4c9 !important;
  transition: 0.2s ease-in-out;
}

.text_lightgrey {
  color: #d5dbe0 !important;
}

.text_grey {
  color: #97aab8 !important;
}

.text_darkgrey {
  color: #61707d !important;
}

.text_black {
  color: #000 !important;
}

.text_red {
  color: #DF547A !important;
}

.text_red:hover {
  color: #DF547A !important;
}

.hover_red {
  transition: 0.2s ease-in-out;
}

.hover_red:hover {
  color: #DF547A !important;
  transition: 0.2s ease-in-out;
}

.text_lightred {
  color: #e3a3b4 !important;
}

.text_orange {
  color: #fea62a !important;
}

.text_yellow {
  color: #FECF2A !important;
}

.text_green {
  color: #06ddc7 !important;
}

.text_green:hover {
  color: #06ddc7 !important;
}

.text_lightgreen {
  color: #b7e8df !important;
}

.text_darkgreen {
  color:#2d9683 !important
}

.text_lined {
  position: absolute;
  top: -.75em;
  background: #fff;
  padding-right: 1em;
}

.text_facebook {
  color: #1778F2;
}

.hover_facebook:hover {
  color: #1778F2 !important;
  transition: 0.2s ease-in-out;
}

.text_instagram {
  color: #E1306C;
}

.hover_instagram:hover {
  color: #E1306C !important;
  transition: 0.2s ease-in-out;
}

.text_linkedin {
  color: #2867B2;
}

.hover_linkedin:hover {
  color: #2867B2 !important;
  transition: 0.2s ease-in-out;
}

.text_twitter {
  color: #1DA1F2;
}

.hover_twitter:hover {
  color: #1DA1F2 !important;
  transition: 0.2s ease-in-out;
}

.text_youtube {
  color: #FF0000;
}

.hover_youtube:hover {
  color: #FF0000 !important;
  transition: 0.2s ease-in-out;
}

.bg_body {
  background-color: #f2f5f7;
}

.bg_gradient_transparent {
  background: rgb(255,255,255);
  background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 45%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 45%, rgba(255,255,255,0) 100%);
  background: linear-gradient(0deg, rgba(255,255,255,1) 45%, rgba(255,255,255,0) 100%);
}

.bg_nav:hover {
  background-color: #f2f5f7;
  transition: 0.2s ease-in-out;
}

.bg_brand {
  color:#fff !important;
  background-color: #47a8e0 !important;
  transition: 0.2s ease-in-out;
}

.bg_brand:hover {
  color:#fff !important;
  background-color: #47bee0 !important;
  transition: 0.2s ease-in-out;
}

.bg_brand_gradient2 {
  background-color: #01ddff;
  background-image: linear-gradient(0deg,#01ddff, #006ede);
  background-image: -webkit-linear-gradient(0deg,#01ddff, #006ede);
  background-image: -moz-linear-gradient(0deg,#01ddff, #006ede);
}

.bg_brand_gradient3 {
  background-color: #06d1dd;
  background-image: linear-gradient(0deg,#006ede, #06d1dd);
  background-image: -webkit-linear-gradient(0deg,#006ede, #06d1dd);
  background-image: -moz-linear-gradient(0deg,#006ede, #06d1dd);
}

.bg_brand_gradient {
  background-color: #5398c2;
  background-image: linear-gradient(30deg, #5499de 0%, #67dbc6 100%);
  background-image: -webkit-linear-gradient(30deg, #5499de 0%, #67dbc6 100%);
  background-image: -moz-linear-gradient(30deg, #5499de 0%, #67dbc6 100%);
}

.bg_white {
  background-color:#fff;
  color:#97aab8;
}

.bg_white9 {
  background-color:rgb(255,255,255,.9);
  color:#97aab8;
}


.bg_blue {
  background-color:#93b4c9;
  color:#fff
}

.bg_lightblue {
  background-color: #a7ddfc;
  color: #004085;
}

.bg_lightblue2 {
  background-color: #dbf3ff;
  color: #296a8f;
}

.bg_darkblue {
  background-color:#084887;
  color:#fff
}

.bg_lightgrey {
  background-color: #e9eef2 !important;
  color:#97aab8
}

.bg_lightgrey2 {
  background:#f2f5f7 !important;
  color:#97aab8
}

.bg_lightgrey3 {
  background:#f7fafc !important;
  color:#97aab8
}

.bg_grey {
  background-color: #d5dbe0 !important;
  color:#4b5761
}

.bg_darkgrey {
  background-color: #c0c8cf;
  color:#4b5761 !important
}

.bg_darkgrey2 {
  background-color: #5c748a !important;
  color:#d5dbe0;
}

.bg_darkgrey3 {
  background-color: #455563 !important;
  color:#97aab8;
}

.bg_darkgrey4 {
  background-color: #2f3e4a !important;
  color:#97aab8 !important
}

.bg_lightred {
  background-color: #f7dfe5;
}

.bg_red {
  background-color: #df547a !important;
  color:#fff !important
}

.bg_lightgreen {
  background-color: #ccede9;
  color:#155724 !important
}

.bg_lightgreen2 {
  background-color: #79d9c7;
  color:#155724 !important
}

.bg_green {
  background-color: #06ddc7;
  color:#fff !important
}

.bg_lightyellow {
  background-color: #fff3cd;
  color:#856404 !important
}

textarea.bg_lightyellow {
  border: 1px solid #ffeeba !important;
  padding: .5rem .5rem !important
}
textarea.bg_lightyellow:focus {
  background-color: #fff3cd;
}

.bg_yellow {
  background-color: #FECF2A !important;
  color:white !important
}

.bg_orange {
  background-color: #fea62a !important;
  color: white !important
}

.bg_darkorange{
  background-color: #ef7d52 !important;
  color: white !important
}

.bg_icon_sm {
  min-width:32px;
  max-height:32px;
  text-align: center;
  color:#9dabb5 !important;
  background-color: rgba(199, 209, 216,.3);
  border-radius: 30px;
  padding:.3em .3em !important;
}

.bg_icon {
  min-width:38px;
  max-height:38px;
  text-align: center;
  color:#9dabb5 !important;
  background-color: rgba(199, 209, 216,.3);
  border-radius: 30px;
  padding:.3em .3em !important;
}

.bg-light-primary {
color: #004085;
background-color: #cce5ff;
border-color: #b8daff;
}

.bg-light-organization_deletery {
color: #383d41;
background-color: #e2e3e5;
border-color: #d6d8db;
}

.bg-light-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.bg-light-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.bg-light-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.bg-light-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.bg-light-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.bg-light-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.stroke_brand {
  border: 1px solid #47a8e0;
}

.stroke_brand2 {
  border: 2px solid #47a8e0;
}

.stroke_brand_gradient {
  position:absolute;
  left: 0;
  top: 50px;
  height: 4px;
  width: 100%;
  background-color: #5398c2;
  background-image: linear-gradient(30deg, #5499de 0%, #67dbc6 100%);
  background-image: -webkit-linear-gradient(30deg, #5499de 0%, #67dbc6 100%);
  background-image: -moz-linear-gradient(30deg, #5499de 0%, #67dbc6 100%);
}

.stroke_grey {
  border: 1px solid #c3c8cc;
  color: #c3c8cc;
}

.stroke_grey2 {
  border: 2px solid #c3c8cc;
  color: #c3c8cc;
}

.stroke_lightgrey {
  border: 1px solid #d5dbe0;
  color: #d5dbe0;
}

.stroke_green {
  border: 1px solid #06ddc7 !important;
  color: #06ddc7;
}

.stroke_green2 {
  border: 2px solid #06ddc7 !important;
  color: #06ddc7;
}

.stroke_yellow {
  border: 1px solid #ffd75b;
  color: #f9bc02;
}

.stroke_yellow2 {
  border: 2px solid #ffd75b;
  color: #f9bc02;
}

.stroke_orange {
  border: 1px solid #ff8c18;
  color: #ff8c18;
}

.stroke_orange2 {
  border: 2px solid #ff8c18;
  color: #ff8c18;
}

.stroke_red {
  border: 1px solid #DF547A;
  color: #DF547A;
}

.stroke_red2 {
  border: 2px solid #DF547A;
  color: #DF547A;
}

.transition2 {
  transition: .2s ease-in-out;
}

.opacity_0 {
  opacity: 0 !important;
  transition: .2s ease-in-out;
}

.opacity_30 {
  opacity: .3 !important;
  transition: .2s ease-in-out;
}

.opacity_50 {
  opacity: .5 !important;
  transition: .2s ease-in-out;
}

.opacity_70 {
  opacity: .7 !important;
  transition: .2s ease-in-out;
}

.opacity_100 {
  opacity: 1 !important;
  transition: .2s ease-in-out;
}

.opacity_hover:hover {
  opacity: 1 !important;
  transition: .2s ease-in-out;
}

.shadow1 {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .1);
  -moz-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .1);
  box-shadow: 0px 0px 15px 5px rgba(0,0,0, .1);
}

.shadow3 {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .3);
  -moz-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .3);
  box-shadow: 0px 0px 15px 5px rgba(0,0,0, .3);
}

.shadow5 {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .5);
  -moz-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .5);
  box-shadow: 0px 0px 15px 5px rgba(0,0,0, .5);
}

.hover_shadow1 {
  transition: .2s ease-in-out;
}

.hover_shadow1:hover {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .1);
  -moz-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .1);
  box-shadow: 0px 0px 15px 5px rgba(0,0,0, .1);
  transition: .2s ease-in-out;
}

.hover_shadow3 {
  transition: .2s ease-in-out;
}

.hover_shadow3:hover {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .3);
  -moz-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .3);
  box-shadow: 0px 0px 15px 5px rgba(0,0,0, .3);
  transition: .2s ease-in-out;
}

.hover_shadow5 {
  transition: .2s ease-in-out;
}

.hover_shadow5:hover {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .5);
  -moz-box-shadow: 0px 0px 15px 5px rgba(0,0,0, .5);
  box-shadow: 0px 0px 15px 5px rgba(0,0,0, .5);
  transition: .2s ease-in-out;
}

.shadow1_top {
  -webkit-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.1);
}

.shadow2_top {
  -webkit-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.2);
}

.shadow3_top {
  -webkit-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.3);
  box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.3);
}

.shadow5_top {
  -webkit-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.5);
}

.hover_shadow1_top {
  transition: .2s ease-in-out;
}

.hover_shadow1_top:hover {
  -webkit-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.1);
  transition: .2s ease-in-out;
}

.hover_shadow2_top {
  transition: .2s ease-in-out;
}

.hover_shadow2_top:hover {
  -webkit-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.2);
  transition: .2s ease-in-out;
}

.hover_shadow3_top {
  transition: .2s ease-in-out;
}

.hover_shadow3_top:hover {
  -webkit-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.3);
  box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.3);
  transition: .2s ease-in-out;
}

.hover_shadow5_top {
  transition: .2s ease-in-out;
}

.hover_shadow5_top:hover {
  -webkit-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 20px 39px 0px rgba(0,0,0,0.5);
  transition: .2s ease-in-out;
}

.shadow_iconcard {
  -webkit-box-shadow: 0px 17px 30px -14px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 17px 30px -14px rgba(0,0,0,0.5);
  box-shadow: 0px 17px 30px -14px rgba(0,0,0,0.5);
}

.bg_green_yellow {
  background: rgb(240,239,7);
  background: linear-gradient(45deg, rgba(80,209,189,1) 40%, rgba(240,239,7,1) 100%);}

.bg_blue_blue {
  background: rgb(9,60,105);
  background: linear-gradient(45deg, rgba(9,60,105,1) 0%, rgba(34,144,238,1) 100%);
}

.bg_green_green {
  background: rgb(88,185,129);
  background: linear-gradient(45deg, rgba(88,185,129,1) 0%, rgba(34,204,200,1) 100%);
}

.bg_blue_green {
  background: rgb(17,141,194);
  background: linear-gradient(45deg, rgba(17,141,194,1) 0%, rgba(58,203,185,1) 100%);}


.rating {
  display: inline-block;
  unicode-bidi: bidi-override;
  font-size: 15px;
  width: auto;
  margin: 0;
  position: relative;
  padding: 0;
}

.rating-upper {
  padding: 0;
  position: absolute;
  z-index: 1;
  display: flex;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating-upper span, .rating-lower span {
  margin:0 1px
}

.rating-lower {
  padding: 0;
  display: flex;
  z-index: 0;
}

/*--/ COLORS -----------------------------------------------------------------*/


/*-- ACTIVITIES --------------------------------------------------------------*/

.list_button {
  color:#969696 !important;
  float:right;
  transition: 0.2s ease-in-out;
}

.list_button:hover {
  color:#5383d1 !important;
  transition: 0.2s ease-in-out;
}

.taskbox, .taskbox_sm, .taskbox_lg {
    display : none;
}

.taskbox.taskbox_white + label i, .taskbox_sm.taskbox_white + label i, .taskbox_lg.taskbox_white + label i {
    background: #fff;
}

.taskbox_lg + label i, .taskbox_lg + a i{
  width: 32px;
  height: 32px;
  background: #f2f5f7;
  color:#c5cdd4;
  margin:0;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  padding:.6em 0 0 .1em;
  transition: 0.2s ease-in-out;
}

.taskbox + label i, .taskbox + a i{
  width: 28px;
  height: 28px;
  background: #f2f5f7;
  color:#c5cdd4;
  margin:0;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  padding:.45em 0 0 .1em;
  transition: 0.2s ease-in-out;
}

.taskbox_sm + label i, .taskbox_sm + a i{
  width: 22px;
  height: 22px;
  background: #f2f5f7;
  color:#c5cdd4;
  margin:0;
  border-radius: 15px;
  cursor: pointer;
  text-align: center;
  padding:.25em 0 0 .1em;
  transition: 0.2s ease-in-out;
}

.taskbox + label i:hover, .taskbox + a i:hover, .taskbox_sm + label i:hover, .taskbox_sm + a i:hover, .taskbox_lg + label i:hover, .taskbox_lg + a i:hover {
  color:#06ddc7;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1) !important;
  transition: 0.2s ease-in-out;
  }

.taskbox:checked + label i, .taskbox:checked + a i {
    background: #06ddc7;
    color: #fff;
    cursor: pointer;
    margin: 0;
    text-align: center;
    padding:.45em 0 0 .1em;
    animation: pulse_on 0.75s;
}

.taskbox_sm:checked + label i, .taskbox_sm:checked + a i {
    background: #06ddc7;
    color: #fff;
    cursor: pointer;
    margin: 0;
    text-align: center;
    padding:.25em 0 0 .1em;
    animation: pulse_on 0.75s;
}

.taskbox_lg:checked + label i, .taskbox_lg:checked + a i {
    background: #06ddc7;
    color: #fff;
    cursor: pointer;
    margin: 0;
    text-align: center;
    padding:.6em 0 0 .1em;
    animation: pulse_on 0.75s;
}

.pulse_dot {
  width: 12px;
  height: 12px;
  border:2px solid #fff;
  border-radius: 50%;
  background: #DF547A;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(255,183,0, 0.4);
  animation: pulse 2s infinite;
}

.pulse_dot:hover {
  animation: none;
}

.pulse_on {
  animation: pulse_on 0.75s;
}

@keyframes pulse_on {
  0% { transform: scale( 1); }
  25% { transform: scale( .75); }
  50% { transform: scale( 1.25); }
	100% { transform: scale( 1); }
}

@keyframes pulse_off {
  0% { transform: scale( 1); }
  25% { transform: scale( .75); }
  50% { transform: scale( 1.25); }
	100% { transform: scale( 1); }
}

.fading {
  animation: fading 1s infinite alternate;
}

@keyframes fading {
  from { opacity: 0; }
}


.checklist_action {
  background-color: transparent;
  padding: .5em;
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.checklist_action:hover {
  background-color: #f5f9fc;
  border-radius: .25rem;
  transition: background-color 0.2s ease-in-out;
}

.checklist_action .remove_action, .checklist_action .empty_action, .checklist_action .move_action {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.checklist_action:hover .remove_action, .checklist_action:hover .empty_action, .checklist_action:hover .move_action {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.titlebox
{
	background-color: black;
	border-radius: 5px;
	height: 100px;
  line-height: 80px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px
}

.titletext
{
 font-size: 30px;
	font-weight: bold;
	color: #fff;
  display: none;
  white-space:nowrap;
	}

.subtitletext
{
 font-size: 16px;
  font-weight: normal;
  color: #999;
  white-space:nowrap;
  line-height: 0px;
  }

.text_placeholder {
  color: #999999;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 16px;
  margin-top:20px
  }
/*--/ ACTIVITIES -------------------------------------------------------------*/


/* CUSTOM POST ---------------------------------------------------------------*/

.post {
  margin: 15px 14px 0 0;
  padding-bottom:14px;
  float:left;
  width:302px;
  height:417px;
  border:1px solid #e6e6e6;
  border-radius: 6px;
  background: #fff;
  transition: box-shadow 0.2s ease-in-out;
}

.post:hover {
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0, .02);
  -moz-box-shadow: 0px 0px 10px 5px rgba(0,0,0, .02);
  box-shadow: 0px 0px 10px 5px rgba(0,0,0, .02);
  transition: box-shadow 0.2s ease-in-out;
}

.post:nth-of-type(4n + 4) {
    margin-right: 0;
}

.post:nth-of-type(4n + 5) {
    clear: left;
}

.prod_image img {
  margin:-1px 0 0 -1px;
  width:302px;
  height:302px;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 6px 6px 0 0;
  transition: 0.2s ease-in-out;
}

.post {
  display: none;
  margin: -1px 0 0 -1px;
  position:absolute;
  width:302px;
  height:302px;
  border-radius: 6px;
  transition: 0.2s ease-in-out;
}

.post:hover .overlay {
  display: block;
  transition: 0.2s ease-in-out;
}

.overlay .post_cart{
  z-index:1;
  border-radius:3px;
  padding: 8px 10px 10px 10px;
  height: 40px;
  position: absolute;
  top: 240px;
  right:60px;
  color: white;
  font-weight: bold;
  background-color:#cc3366;
}

.overlay .post_qty{
  z-index:1;
  border-radius:3px;
  padding: 8px 10px 10px 10px;
  height: 40px;
  position: absolute;
  top: 200px;
  right:0px;
  color: white;
  font-weight: bold;
  background-color:#cc3366;
}

.overlay .post_share{
  z-index:1;
  border-radius:3px;
  padding: 8px 10px 10px 10px;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 240px;
  right:10px;
  background-color:#fff;
  border: 1px solid #e6e6e6;
}

.overlay .overlay_background{
  margin:-1px 0 0 0px;
  width:302px;
  height:302px;
  background-color:#fff;
  opacity:0.5;
  border-radius: 6px 6px 0 0;
}

.titlebox {
  width:100%;
  margin:0;
  border-bottom:1px solid #e6e6e6
}

.prod_price {
  margin:0;
  padding:10px 10px 1px 10px;
  color: #cc3366;
  font-size:16px;
  font-weight: bold;
}

.prod_title {
  margin:0;
  padding:0 10px 9px 10px;
  color: #969696;
  font-size:13px;
}

.logobox {
  width:100%;
  cursor:pointer
}

.logobox img{
  float:left;
  margin:10px 10px 10px 10px;
  width:30px;
  height:30px;
  border: 1px solid #e6e6e6
}

.logobox .brand_name {
  padding:15px 10px 10px 10px;
  color:#cc3366;
  font-weight:bold;
  font-size:14px;
}


.video-content {
position: relative;
width: 100%;
}
/* ---------------------------------------------------------------------------*/


/*-- CARDS -------------------------------------------------------------------*/

.bg_active:hover{
  background-color:#f0f0f0;
  cursor:pointer;
  transition: background-color 0.2s ease-in-out;
}

.card_nobg {
  border-radius: 12px;
  background-color:transparent;
  border:none;
  transition: background-color 0.2s ease-in-out;
}

.card_nobg:hover{
  border-radius: 12px;
  background-color:#e6e6e6;
  border:none;
  transition: background 0.2s ease-in-out;
}

.card_nobg:hover .card-body .info_icon{
  border-radius: 12px;
  background-color:#e6e6e6;
  border:none;
  transition: background 0.2s ease-in-out;
}


.layer_overlay {
  background-color: #fff;
  opacity: 0.5;
  border-radius: 6px 6px 0 0;
  width:100%;
  height:100%;
  position: relative;
}

.tutorial_card {
  width:600px;
  height:400px;
}

.price_number {
  text-align: center;
  position: relative;
}

.price_number .price_top {
  font-size: 18px;
  position: relative;
}

.price_number .price_middle {
  font-size: 70px;
  line-height:50px;
  text-align: center;
}

.price_number .price_bottom {
  font-size: 18px;
  position: relative;
  text-transform: lowercase;
}

.invoice_box {
  position: relative;
}

.invoice_box .invoice_btn{
  position: absolute;
  display: inline-flex;
  align-items: center;
  width: 30px;
  height: 30px;
  right:-15px;
  top:54px;
}

/* ---------------------------------------------------------------------------*/


/*-- LIST CARDS --------------------------------------------------------------*/

.l_card_body {
  min-height: 100px;
  width: 100%;
  padding:10px 10px 10px 0;
}

.l_card_header {
  display: inline-flex;
  align-items: center;
  width: 100%
}

.l_card_private {
  margin-left: -22px;
  padding-right: 0;
}

.l_card_title {
  margin-left: 20px;
  width: 80%;
}

.l_card_check {
  position: relative;
  margin-left:10px;
}

.l_card_info {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding-left:2em
 }

 .l_card_priority {
   position:absolute;
   left:-.25em
 }

.l_card_date {
  margin-left: 50px;
  width: 50%;
 }

.l_card_child {
 margin-left: 0px;
 width: 50%;
}

.l_card_parent {
  position: absolute;
  bottom:0;
  width: 100%
 }

.l_card_tag {
 margin-left: 0px;
 margin-bottom:.5em;
}

.l_card_avatar {
 margin-left: 80px;
}

.l_card_option {
  margin-left: 80px;
 }

 /* .card_task {
   border: none !important;
   border-radius: 6px
 }

 .card_task .card-body {
   justify-content: space-between;
   display: flex;
   align-items: center;
   padding: 1.25rem;
 }

 .card_workarea {
   width:4px;
   border-radius:6px 0 0 6px
 } */

/*--/ LIST CARDS -------------------------------------------------------------*/

/*-- WEBSITES ----------------------------------------------------------------*/

.page_editor {
  position: relative;
  flex: 1;
  /* white-space: nowrap; */
  display: flex;
  overflow-y: hidden;
  height: calc(100vh - 100px);
  width: 100% !important;
}

.main_title {
  font-size: 2.5em;
  font-weight: 200
}

.main_subtitle {
  font-size: 26px;
  line-height: 34px;
  font-weight: 300
}

.main_text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300
}

/*--/ WEBSITES ----------------------------------------------------------------*/


/*-- KANBAN ------------------------------------------------------------------*/


.kanban {
  position: relative;
  /*top:0px;
  padding-top:145px;*/
  flex: 1;
  white-space: nowrap;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  height: calc(100vh - 150px);
  width: 100% !important;
}

.k_bucket_col {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 300px;
  max-height: calc(100vh - 150px);
  word-wrap: break-word;
  background-clip: border-box;
  border-radius: 6px;
  transition: .2s ease-in-out;
}

.k_bucket_col:hover {
  background:#e9eef2;
  transition: .2s ease-in-out;

}

.k_bucket_header {
  padding: .75rem 0 0 0;
}

.k_header_title {
  white-space: normal;
  padding: 0 .75em;
  display: flex;
}

.k_bucket {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 .75rem .75em .75em;
}

.k_bucket_sortable {
  /*padding: 0 .75rem .75em .75em;*/
}

.k_card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 6px;
  min-height: 100px;
  transition: .2s ease-in-out;
}

.k_card:hover {
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0, .03);
  -moz-box-shadow: 0px 0px 10px 5px rgba(0,0,0, .03);
  box-shadow: 0px 0px 10px 5px rgba(0,0,0, .03);
  transition: .2s ease-in-out;
}

.k_card_body {
  padding:10px;
  min-height: 100px;
  cursor:pointer;
}

.k_card_body .k_card_check {
  position:absolute;
  top:10px;
  right:10px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.k_card_header {
  min-height: 56px;
  padding-bottom: 1.5em
}

.k_card_title {
  max-width: 220px;
  word-wrap: break-word;      /* IE 5.5-7 */
  white-space: -moz-pre-wrap; /* Firefox 1.0-2.0 */
  white-space: pre-wrap;      /* current browsers */
}

.k_bucket .k_card_sortable:not(:first-child) {
  margin-top:.75rem;
}

.k_card_footer {
  font-size: 14px
}

.k_card_placeholder {
  opacity: 0.4;
  margin-top:.75rem;
}

.k_btn {
  padding: 0 .75em .75em .75em
}

.k_card_avatar {
  position: absolute;
  bottom: -2px;
}

.k_card_body .k_card_option {
  position:absolute;
  bottom:0px;
  right:0px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.k_card_body:hover .k_card_check,.k_card_body:hover .k_card_option {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

/* .k_card_option_dropdown {
  width:100%;
  max-width: max-content;
  top: -8px;
  left: 100%;
  margin-top: -1px;
} */

.k_card_border_left {
  position:absolute;
  top:2px;
  left:0;
  height:calc(100% - 4px);
  border: 1px solid #DF547A;
border-top-left-radius: 50px 100px;
border-bottom-left-radius: 50px 100px;
}

.dragging {
  -webkit-box-shadow: 0px 0px 10px 5px rgba(71,168,224, .3);
  -moz-box-shadow: 0px 0px 10px 5px rgba(71,168,224, .3);
  box-shadow: 0px 0px 10px 5px rgba(71,168,224, .3);
  border-radius: .5em;
}

.dragging_rotate_r {
  transform: rotate(5deg);
  -webkit-box-shadow: 0px 0px 10px 5px rgba(71,168,224, .3);
  -moz-box-shadow: 0px 0px 10px 5px rgba(71,168,224, .3);
  box-shadow: 0px 0px 10px 5px rgba(71,168,224, .3);
  border-radius: .5em;
}

.dragging_rotate_l {
  transform: rotate(-5deg);
  -webkit-box-shadow: 0px 0px 10px 5px rgba(71,168,224, .3);
  -moz-box-shadow: 0px 0px 10px 5px rgba(71,168,224, .3);
  box-shadow: 0px 0px 10px 5px rgba(71,168,224, .3);
  border-radius: .5em;
}

.overlay_options {
  background: rgba(45, 62, 80, 0.5);
  bottom: 0;
  color: #fff;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 15;
}


/*--/ KANBAN -----------------------------------------------------------------*/


/*-- NETWORK CARDS -----------------------------------------------------------*/

.n_card_btn {

}

/*--/ NETWORK CARDS ----------------------------------------------------------*/


/* -- MEDIA QUERIES ----------------------------------------------------------*/


/*Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/*Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/*Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

/* Very Very Small devices */
@media (max-width: 413px) {

  .font22 {
    font-size: 16px !important;
    font-weight:100
  }

  .cover {
    height:100%
  }

  .cover_left {
    display:none
  }

  .cover_right {
    height:100vh !important
  }

  .cover_right_form {
    width:280px
  }

  .cover_right_language {
    display:none
  }

  .cover_right_footer {
    position:absolute !important;
    bottom:0
  }

  .cover_right_logo img {
    display: block;
    width:150px
  }

  .search_box {
    width: 100%;
  }

  .search_box input{
    min-width:auto;
  }

  .tutorial_card {
    width:100%;
    height:100%;
  }

}


/* Very Small devices */
@media (max-width: 575.98px) {

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
}


/*Small devices (landscape phones, 576px and up) */
/*@media (min-width: 321px) and (max-width: 991.98px) {*/
@media (max-width: 991.98px) {

  .banner_top {
    height: 100%;
    min-height: 40px;
    display: block;
    text-align: center;
    background: #49505b;
    color: #fff;
    padding: .5em 1em
  }

  .font22 {
    font-size: 22px !important;
    font-weight:100
  }

  .cover {
    height:100vh !important
  }

  .cover_left {
    display:none
  }

  .cover_right {
    height:100vh !important
  }

  .social_button {
    width: 300px
  }

  .cover_right_form {
    width:300px
  }

  .cover_right_language {
    display:none
  }

  .cover_right_footer {
    position:absolute !important;
    bottom:0
  }

  .cover_right_logo img {
    display: block;
    width:200px
  }

  .tutorial_card {
    width:100%;
    height:100%;
  }

  .cardnumber {
    height: 100%;
    width: 100%;
    padding: 20px;
    transition: background 0.2s ease-in-out;
  }

  .cardnumber .card{
    width: 100%;
  }

  .cardnumber h1 {
    font-size:22px;
    vertical-align: middle;
    text-align: center;
  }

  .cardnumber p {
    margin:4px 0 0 8px;
    font-size:15px;
    vertical-align: middle;
    text-align: center;
  }

  .btn_toggle {
    width:100%;
  }

  .l_card_body {
    padding:15px;
    height: 100%;
  }

  .l_card_header {
    display: inline-flex;
    align-items: start;
    margin-bottom: 20px;
  }

  .l_card_private {
    position: absolute;
    top: 15px;
    left:0px
  }

.l_card_title {
  margin: 0 !important;
}

.l_card_title .l_card_title1 {
  margin: 0 !important;
  padding: 0 !important;
}

.l_card_check {
  position:absolute;
  top:0px;
  right:0px;
 }

 .l_card_info {
   position: relative;
   min-height: 40px;
   align-items: center;
   width: 100%;
   padding: 0;
  }

  .l_card_priority {
    position:absolute;
    left:auto;
    top: 8px;
    right:40px;
  }

 .l_card_date {
   margin-left: 60px;
   width: 30%;
  }

  .l_card_child {
   margin-left: 10px;
  }

  .l_card_parent {
    position: relative;
    width: 100%;
   }

   .l_card_tag {
     position: relative;
     margin-left: 0px !important;
     width: 95%;
     margin-bottom: 0;
    }

  .l_card_avatar {
    position: absolute;
    margin-left: 0;
  }

  .l_card_option {
    position: absolute;
    bottom: 15px;
    right:10px;
  }


  .k_card_body .k_card_check {
    position:absolute;
    top:10px;
    right:10px;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
  }

  .k_card_body .k_card_option {
    position:absolute;
    top:10px;
    right:0px;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
  }


  .n_card_btn {
    position:absolute;
    width: 100%;
    top:10px;
  }

  .avatar_square_xl {
    min-width: 90px !important;
    width: 90px !important;
    height: 90px !important;
    object-fit: contain;
    font-weight: normal;
    text-align: center;
    line-height:116px;
    font-size:2rem;
    border-radius: 8px;
    border: 4px solid #fff;
    color: #fff;
    background-color:#fff;
    transition: background-color 0.2s ease-in-out;
  }



  .main_title {
    font-size: 1.5rem;
    font-weight: 300
  }

  .main_subtitle {
    font-size: 1.2rem;
  }

}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

}

/* --/ MEDIA QUERIES ---------------------------------------------------------*/

.chat ul.chat_posts li .chat_content li {
   display: revert !important;
}


.chat ul.chat_posts li .chat_content li:not(:first-child) {
     border-top: 0px !important;
     padding-top: 0px !important;
 }


 /* CSS FOR FORM CALENDAR  */
 #f_calendar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
  }

  #f_calendar-left {
    /* width: 70%; */
    width:350px;
  }

  /* #f_calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  } */

  #f_calendar-nav a {
    /* background-color: #fff;
    border: 1px solid #ccc;
    color: #333;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px; */
  }

  #f_calendar-nav a:hover {
    background-color: #eee;
  }

  #f_calendar-dates {
    display: flex;
    flex-wrap: wrap;
  }

  #f_calendar-dates div {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 4px;
    cursor: pointer;
    border-radius: 50%;
  }

  #f_calendar-dates .current-month {
    background-color: #f7fafc;
    font-weight: bold;
  }
  #f_calendar-dates .current-month:hover {
    background-color: #dbf3ff !important;
  }

  #f_calendar-dates .f_selected {
    background-color: #47a8e0 !important;
    color: #fff !important;
  }

  #f_calendar-dates .f_selected:hover {
    background-color: #47bee0 !important;
  }

  #f_calendar-dates .f_disabled {
    /* background-color: #e97272; */
    color: #97aab8 !important;
    cursor: not-allowed !important;
  }
  #f_calendar-dates .f_disabled:hover {
    background-color: #fff !important;
  }


  #f_calendar-dates .f_disabled {
    /* background-color: #e97272; */
    color: #97aab8 !important;
    cursor: not-allowed !important;
  }

  #f_calendar-right {
    /* width: 30%; */
    /* width: 425px; */
    /* display: flex;
    flex-direction :column; */
  }

  #f_selected-date {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .f_time-slot {
    /* display: inline-block;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #333;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 5px; */
  }

  .f_time-slot:hover {
    background-color: #eee;
  }

  .f_time-slot.f_selected {
    background-color: #47a8e0;
    color: #fff;
  }
