/* === variables* === */
:root{

     /*colors*/
    --primary-color-bg:#243978;
    --primary-color-dark:#0A1E5C;
    --primary-color-light:#F7F8FC;
    --secondary-color:#956F3E;
    --secondary-color-light:#B58E5B;
    --danger-color-dark: #F15B5B;
    --warning-color-dark: #FFBE00;
    --border-color: #E4E4E7;
    --primary-font-color:#7586BB;
    --sec-font-color:#B3BEDF;
    --font-color-light:#D4DBEE;

    /*font*/
    --regular-Mont-font:'Montserrat-Regular';
    --medium-Mont-font:'Montserrat-Medium';
    --bold-Mont-font:'Montserrat-Bold';

    --regular-sans-font:'OpenSans-Regular';
    --semibold-sans-font:'OpenSans-SemiBold';
    --bold-sans-font:'OpenSans-Bold';

    --regular-nunitosans-font:'OpenSans-Regular';
    --semibold-nunitosans-font:'OpenSans-SemiBold';
    --bold-nunitosans-font:'OpenSans-Bold';

    /*size*/
    
}

/* ==== base properties ==== */

*,::before,::after{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.err-input-box{
  border:1px solid #F15B5B !important;
}
body {
  margin: 0;
  color: var(--primary-color-bg);
  background-color:var(--primary-color-light);
  font-size:16px;
  font-family:var(--regular-sans-font) !important;
  -webkit-transition: .5s;
  transition: .5s;
  position: relative;
  --moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

a, a:active, a:hover{
  text-decoration: none;
  color: var(--primary-color-bg);
}

input,textarea{
    outline: none;
    border:none;
    color: var(--primary-color-bg)
}
textarea{
    width: 100%;
    min-height: 110px;
    border-radius: 12px;
    padding: 16px;
    resize: none;
    background-color:var(--primary-color-light);
}
textarea::placeholder{
    color: var(--primary-font-color);
}
textarea:focus{
    border: 1px solid var(--primary-color-bg);
}
.input-container:focus-within{
    border:1px solid var(--primary-color-bg);
}


/*======= COMMON CLASSES =======*/

.hidden{
  display: none !important;
}
.fadein{
  animation: fade-in .3s ease-in .1s both;
}
@keyframes fade-in{
  from{opacity: 0;transform: translateY(-50px);}
  to{opacity: 1;transform: translateY(0px);}
}
.padz{
  padding: 0px !important;
}
.padRz{
  padding-right: 0;
}
.padLz{
  padding-left: 0;
}
.text-center{
  text-align: center;
}
.card-21k{
  border-radius: 12px;
  position: relative;
}
[class^="note"]{
  font-size: 11px;
  color: var(--primary-font-color);
  padding: 0 6px;
  margin-bottom: 0;
}

.note-lg{
  font-size: 13px;
  padding: 0;
}

.success-content{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  height: calc(100% - 64px);
}
.success-content > div{
  margin-top: 60px;
}
.success-content > div img{
  margin-bottom: 24px;
}
.success-content p {
  margin-bottom: 8px;
}
.err-input-box{
  border:1px solid ;
}
#err-msg,
#valid-msg{
  margin-top: 6px;
  padding-left: 6px;
  font-size: 14px;
}
#err-msg{
  color: #ff2222;
}
.verify-icon{
  width: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}
.valid-input-box{
  border:1px solid #5ED956 !important;
}


/*collapsible*/
.content {
  padding-left: 34px;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  /*background-color: var(--side-menu-active-bg);*/
}

/*common path header*/
.path-header{
  display: flex;
  margin-bottom: 80px;
 }
.path-header .left-arrow{
  margin-right: 10px;
}
.path-header .main-heading{
  margin-bottom: 0;
}
.path-header-name{
  display: flex;
  align-items: center;
}
.section-form-page .path-header{
  /*justify-content: space-between;*/
}

/*background-colors*/
.bg-blue{
  background-color: var(--primary-color-bg);
}
.bg-light-blue{
  background-color: #00BCBC;;
}
.bg-dark-red{
  background-color: #C63838;
}
.bg-red{
  background-color: var(--danger-color-dark);
}
.bg-yellow{
  background-color: var(--warning-color-dark);
}
.bg-brown{
  background-color: var(--secondary-color-light);
}
.trans-bg{
  background-color: rgba(0,0,0,.5);
}

.star{
  color: red !important;
}

/*pagination*/
.section .paginationjs{
  display: flex;
  justify-content: center;
}
.section .paginationjs .paginationjs-pages li,
.section .paginationjs .paginationjs-pages li > a,
.paginationjs .paginationjs-pages li:last-child > a{
  border: 1px solid transparent !important;
}
.section .paginationjs .paginationjs-pages li.active,
.section .paginationjs .paginationjs-pages li.active>a{
  background-color: var(--primary-color-light);
  border-radius: 6px;
  border: 1px solid #B3BEDF !important;
  color: var(--primary-color-bg);
}

/*======= COMMON COMPONENTS =======*/

/*buttons*/
.butn{
   width: 100%;
   height: 54px;
   border-radius: 12px;
   text-align: center;
   cursor: pointer;
   transition: .3s;
}
.primary-butn{
   background-color: var( --primary-color-bg);
   border:1px solid var( --primary-color-bg);
   color: #FAFAFA;
}
.primary-butn:hover{
   box-shadow: 0px 8px 15px rgb(36 57 120 / 60%);
}
.sec-butn{
   background-color: #fff;
   border:1px solid #fff;
   color: var(--primary-color-bg);
}
.ter-butn{
   background-color: #fff;
   border:1px solid var(--primary-color-bg);
   color: var(--primary-color-bg);
}
.ter-butn:hover{
   box-shadow: 0px 8px 15px rgb(36 57 120 / 15%);
}
.draft-btn {
   font:11px var(--bold-Mont-font);
   width: 145px;
   height: 35px;
   border: 1px solid #F15B5B;
   border-radius: 50px;
   padding: 2px 16px;
   color: #F15B5B;
   background: #fff;
   text-transform: uppercase;
}

/*21k custom checkbox*/
.checkbox-21k,.checkbox-21k-dark,.checkbox-21k-light{
  display: none;
}
.check-label{
  position: relative;
  padding-left: 24px;
  cursor: pointer;
}
.check-label:before{
  content: "";
  position: absolute;
  top: 2px;
  left: -4px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.check-label-lg:before{
  width: 16px;
  height: 16px;
  border-radius: 4px;
  top: 0;
  left: 2px;
}
.check-label:before{
  border:1px solid var(--primary-font-color);
}
.check-label-dark:before{
  border:1px solid var(--primary-color-bg);
}
.check-label-light:before{
  border:1px solid var(--sec-font-color);
}
[class^="checkbox-21k"]:checked+ .check-label:after{
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
[class^="checkbox-21k"]:checked+ .check-label-lg:after{
  top: 3px;
  left: 8px;
}
.checkbox-21k:checked+ .check-label:before{
  background-color:var(--primary-font-color);
}

.checkbox-21k-dark:before{
  border:1px solid var(--primary-color-bg);
}
.checkbox-21k-dark:checked+ .check-label:before{
  background-color:var(--primary-color-bg);
}
.checkbox-21k-light:before{
  border:1px solid var(--sec-font-color);
}
.checkbox-21k-light:checked+ .check-label:before{
  background-color:var(--sec-font-color);
}

.loader-container{
   position: fixed;
   width: 100vw;
   height: 100vh;
   top: 0;
   left: 0;
   background-color: rgba(0 0 0 / .2);
   z-index: 1250;
   display: flex;
   align-items: center;
   justify-content: center;
}
.loader svg path{
  fill: #243978 !important;
}

/*MAIN LOADER*/
.main-loader{
  background: url(../assets/loader_logo_21k.png) no-repeat center, linear-gradient(to right, #0B305E, #072153, #051A4E);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483004;
}
.loader__logo-shade{
  position: relative;
  left: -150px;
  width: 80px;
  height: 80px;
  transform: skewX(-45deg);
  background-color: rgba(7, 34, 83,.85);
  box-shadow: 2px 2px 15px 6px rgb(10 30 92);
  animation: loaderShade 3s linear infinite running;
}
@keyframes loaderShade{
  0%{left:-150px;opacity: 0.7;}
  50%{left:0px;opacity: 1;}
  100%{left:150px;opacity: 0.9;}
}


/*======= hiding defaults ======= */
::-webkit-scrollbar {display:none;} /* Safari */
::-moz-scrollbars {display:none;}
::-o-scrollbar {display:none;} /* opera */
::-google-ms-scrollbar {display:none;}
::-khtml-scrollbar {display:none;}

/*scroll default colors*/
::-webkit-scrollbar-track {
  background: #B3BEDF; 
  border-radius: 12px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color-bg); 
  border-radius: 12px;
}

/*hide input[number] up and down arrow*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide Calendar Icon In Chrome */
/*input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}*/

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
input[type="date"]{
  user-select: none;
}
/*remove chrome autofill*/
:-webkit-autofill,
:-webkit-autofill:hover,
:-webkit-autofill:focus,
:-webkit-autofill:active {

    transition: all 5000s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0 1000px var(--primary-color-light) inset;
    -webkit-text-fill-color: var(--primary-color-bg);
}

/*PLACEHOLDER*/
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #B3BEDF;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #B3BEDF;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #B3BEDF;
}

.form-select:focus-visible{
  border:none;
  outline: none;
}

/*hide border in modal popup*/
.modal .modal-header,
.modal .modal-footer{
  border: none !important;
}

/* ======= side-bar =======*/

#sidebar-toggle {
    display: none;
}

.side-togglebar{
    display: none;
    cursor: pointer;
}
.side-togglebar img{
    width: 25px;
}
.sidebar-sm-logo{
    display: none;
}
.sidebar {
    height: 100%;
    width: 224px;
    position: fixed;
    left: 0;
    top: 0;
    color: var(--primary-font-color);
    background-color:var(--primary-color-light);
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    transition: width 500ms;
    z-index: 110;
}

.sidebar-header {
    display: flex;
    justify-content:center;
    align-items: center;
    padding:25px 25px 80px;
    margin: 10px 0;
}
.sidebar-header h3{
    margin-bottom: 8px;
}
.side-head{
    margin-top: 0;
}
.side-head span{
  font:16px var(--side-head-font);
  color: var(--side-head-color);
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.sidebar-header label{
  margin: 0;
}
.sidebar-menu {
    white-space: nowrap;
    max-height: 75%;
    overflow-y: scroll;
}
.sidebar-menu img{
    width: 24px;
}

.sidebar-menu ul li {
    width: 85%;
    height: 52px;
    display: flex;
    align-items: center;
    transition: .3s;
    margin-bottom: 5px;
}

.sidebar-menu li:hover{
    background-color: #fff;
    border-radius:0 12px 12px 0;
}
.sidebar-menu a {
    display: block;
    color: #B3BEDF;
    line-height: 50px;
    padding: 8px 0 8px 40px;
    flex-grow: 1;
    transition: .3s;

}
.sidebar-menu a:hover{
    text-decoration: none;
    color: var(--primary-color-bg);
}
.sidebar-menu a span:last-child {
    padding-left: 15px;
    transition: .3s;
    vertical-align: middle;
}

#sidebar-toggle:checked ~ .sidebar {
    width: 50px;
}

#sidebar-toggle:checked ~ .sidebar .sidebar-header h3 span,
#sidebar-toggle:checked ~ .sidebar li span:last-child {
    display: none;
}

#sidebar-toggle:checked ~ .sidebar .sidebar-header,
#sidebar-toggle:checked ~ .sidebar li {
    display: flex;
}

#sidebar-toggle:checked ~ .sidebar .sidebar-header  img{
    transform: rotate(180deg);
}

#sidebar-toggle:checked ~ .main-content {
    margin-left: 60px;
}

#sidebar-toggle:checked ~ .main-content header {
    left: 60px;
    width: calc(100% - 60px);
}
.sidebar-link > svg{
    vertical-align: middle;
    width: 25px;
}


/*svg enabling disabling And Sidebar active */
.sidebar-link.active-sidemenu {
    background-color: #fff;
    border-radius:0 12px 12px 0;
    color: var(--primary-color-bg);
}
.enable-svg{
    display: none;
}
.sidebar-link.active-sidemenu .disable-svg{
    display: none;
}
.sidebar-link.active-sidemenu .enable-svg{
    display: inline-block;
}
.icon-underline{
    animation: home .4s ease-in .1s both;
}
.sidebar-logo{
    max-width: 100%; height : auto;
}
@media screen and (min-height: 500px){
  .profile-menu{
     position: absolute;
     bottom: 50px;
  }
}

@keyframes home {
  from{transform: translate(-20px , 5px);opacity: 0;}
  to{transform: translate(0, 0);opacity: 1;}
}

/* ======= HAMBURGER =======*/
.hamburger-container{
  position: absolute;
  top: 96px;
  right: -363px;
  width: 363px;
  height: calc(100vh - 96px);
  padding: 16px 32px 22px 24px;
  overflow: hidden;
  overflow-y: scroll;
  background-color: var(--primary-color-light);
  border-top:1px solid var(--border-color);
  z-index: 210;
  transition:.2s ease-in-out;
}
.ham-active{
  right: 0;
}
.ham-backdrop{
  background-color: #000;
  opacity: 0.5;
  position: absolute;
  top: 96px;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
}
.ham-menu-item,.ham-desc{
  display: flex;
  align-items: center;
  cursor: pointer;
}
.ham-menu-item,.ham-link-item > a{
  position: relative;
  justify-content: space-between;
}
.ham-link-item{
  margin-bottom: 32px;
  position: relative;
}
.ham-link-item:after{
  content: "";
  position: absolute;
  bottom: -16px;
  left: -25px;
  width: 95%;
  height: 1px;
  background-color:#efefef;
}
.ham-link-item > a{
  display: flex;
  width: 100%;
}

.ham-icon{
  margin-right: 12px;
  width: 20px;
}
.ham-sublist{
  margin-bottom: 22px;
  position: relative;
  border-bottom: 1px solid #efefef;
}
/*.ham-sublist:last-of-type{
  border: none;
}*/

.ham-subitem,.ham-subitem a,.ham-subitem a:hover{
  color:var(--primary-font-color);
  margin-bottom: 20px;
}
.ham-subitem a:hover{
  color:var(--primary-color-bg);
}
.ham-subitem:last-child{
  /*margin-bottom: 0;*/
}
.drop-arrw{
  transition:.3s;
}
.rot-ham-arrw{
  transform: rotate(-180deg);
}
.ham-social-iconlist{
  margin-bottom: 0;
}
.ham-social-iconlist img{
  width: 36px;
  margin-right: 8px;
}



/*NOTIFICATION*/


/* -------------------------- */
/* CLASSES TO MAKE MODAL WORK */

.modal-noti {
  position: fixed;
  top:128px;
  left:256px;
  transform: translateY(90px);
  width: calc(100vw - 124px);
  height: calc(100vh - 160px);
  background-color: var(--primary-color-light);
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 90;
  transition: .3s;
}
.slide{
  animation: fadeIn .3s ease-out forwards;
}
.slide-up{
  animation: fadeOut .2s ease-out forwards;
}

/*@keyframes fadeIn{
  0%{top: -50%;opacity: .2}
  100%{top: 32px;opacity: 1;}
}
@keyframes fadeOut{
  from{top: 32px;opacity: 1}
  to{top: -80%;opacity: .2;display: none;}
}*/

@keyframes fadeIn{
  0%{transform: scale(.1);opacity: .2}
  50%{transform: scale(1.1);opacity: .5}
  100%{transform: scale(1);opacity: 1;}
}
@keyframes fadeOut{
  0%{transform: scale(1);opacity: .6}
  50%{transform: scale(1.1);opacity: .2}
  100%{transform: scale(0);opacity:.1;display: none;}
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(2px);
  z-index: 80;
}




/*NOTIFICATION*/

.noti-header{
  display: flex;
  background-color: var(--primary-color-light);
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 12px 12px 0 0;
  border:1px solid var(--border-color);
}
.noti-heading{
  display: inline-block;
  font-size: 20px;
}
.notification-breadcrumb{
  display: flex;
}
.notification-breadcrumb .lefr-arrow{
  vertical-align: bottom;
}
.radio_noti_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d4dbee;
    width: 150px;
    height: 40px;
    border-radius: 6px;
    padding: 6px;
    transition: .3s;
}
.menu-toggle-label, .noti-toggle-label {
    font: 13px var(--regular-nunitosans-font);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: inherit;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    transition: linear 0.3s;
    color: var(--primary-color-dark);
    margin: 0px;
    cursor: pointer;
    transition: .3s;
}
.noti-radio{
    appearance:none;

}

input[name="radio"]:checked + label {
    background-color: #fff;
    color: var(--primary-color-dark);
    transition: 0.3s;
}

input[name="noti-radio"]:checked + label {
    background-color: #fff;
    color: var(--primary-color-dark);
    transition: 0.3s;
}


.notification{
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: space-between;
    border-bottom:1px solid var(--border-color);
    background-color: #fff;
}
.notification:hover{
    box-shadow: 0 2px 10px #cdcdcf;
    transform: translate(10px, 10px);
}
.notification:last-child{
    border: none;
}
.notification-box{
  width: 98.5%;
  height: calc(100% - 102px);
  overflow-y: scroll;
  border-radius: 0 0 0 12px;
}
.notification-list{
  margin-right: 12px;
}
.noti-desc-box{
  max-width: 80%;
}
.noti-main-desc{
    margin-bottom: 10px;
}

.noti-sub-desc{
    margin-bottom: 16px;
}
.noti-sub-box{
    background-color:var(--primary-color-light);
    height: 40px;
    padding: 12px;
    min-width: 198px;
    max-width: 315px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
}
.complete-form{
    width: 311px;
    white-space: nowrap;  
    overflow: hidden;
    text-overflow: ellipsis;
}
.noti-sub-box span{
    display: inline-block;
}
.calen-size{
    font-size: 11px;
}
.calendar-dwnld{
    width: 198px;
}
.calendar-dwnld-link,.calendar-dwnld-link:hover{
    font-size: 11px;
    color: #F15B5B;
}
.calendar-dwnld-link img{
    margin-right: 2px;
    margin-bottom: 2px;
}
.complete-form-link,
.complete-form-link:hover
{
    color: #FFBE00;
}
.noti-time{
    font-size: 13px;
    color: var(--secondary-color-light)
}
.notification-box::-webkit-scrollbar {
  display:block;
  width: 4px;
  padding-left: 20px;
  border-radius: 12px;
  cursor: pointer;
}
.notification-box::-webkit-scrollbar-track {
  background: var(--font-color-light); 
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 290px;
}
/* Handle */
.notification-box::-webkit-scrollbar-thumb {
  background: var(--primary-font-color); 
  border-radius: 12px;
}

/*Enable notification popup*/
.enable-notification-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 500;
}
.enable-noti-card{
  width: 500px;
  padding: 20px;
  background-color: #fff;
  overflow: hidden;
}
.enable-noti-card .card-heading{
  margin-bottom: 10px;
  color: var(--primary-color-bg);
  width: 100%;
  font-weight: 600;
}
.enable-noti-card .note{
  font-size: 16px;
  margin-bottom: 16px;
}





/* ======= BODY CONTENT ======= */
.main-content-box{
    margin-left: 224px;
    position: relative;
    top: 96px;
    background-color: var(--primary-color-light);
    transition: .3s;
}

.section{
    position: relative;
    background-color:#fff;
    padding: 32px;
    margin-bottom: 10px;
    transition: .3s; 
}
.section-form-page{
    height: calc(100vh - 96px);
    overflow: hidden;
    overflow-y: scroll;
}
.main-heading{
    font:23px var(--medium-Mont-font);
    color: var(--primary-color-dark);
    margin-bottom: 16px;
}
.card-heading{
    font:19px var(--medium-Mont-font);
    color: #fff;
    /*display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;*/
    overflow: hidden;
    text-overflow: ellipsis;
    /*width: 80%;*/
}
.card-sub-desc{
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*CAROUSEL OWL*/
.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    margin: 20px 0;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
}
.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #243978;
}

.owl-theme .owl-dots .owl-dot span {
    width: 60px;
    height: 2px;
    margin: 2px 0px;
    background: #D4DBEE;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

/*INPUT FIELDS*/
.input-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    width: 100%;
    min-height: 79px;
    border-radius: 12px;
    border:1px solid var(--primary-color-light);
    background-color:var(--primary-color-light);
    margin-bottom: 16px;
    position: relative;
}
.form-label{
    width: 100%;
    text-align: left;
    text-transform: uppercase;
    font: 11px var(--bold-sans-font);
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 12px;
}
.form-input{
    width: 100%;
    height: 100%;
    font: 16px var(--regular-sans-font);
    color:var(--primary-color-bg);
    border:none;
    background-color:var(--primary-color-light);
}
.upload-input{
   display: none;
}


/*SWAL ELEMENTS*/
.swal2-popup{
   border-radius: 12px !important;
   color: var(--primary-color-bg) !important;
}
.swal2-actions .swal2-styled.swal2-confirm{
   background-color: var(--primary-color-bg);
}
.swal2-actions .swal2-styled.swal2-confirm:focus{
   box-shadow: unset;
}
.swal2-actions .swal2-styled.swal2-confirm:hover{
   box-shadow: 0px 5px 15px rgb(36 57 120 / 60%); 
}
.swal2-popup .swal2-html-container{
   color: var(--primary-font-color);
}
.swal2-popup .swal2-icon.swal2-warning{
   border-color: var(--secondary-color-light);
   color: var(--secondary-color-light);
}

/* ======= MEDIAQUERY ======= */
@media screen and (min-width: 992px){
  .modal-noti{
    width: 70%;
  }
  .radio_noti_container{
    width: 335px;
    height: 60px;
    border-radius: 12px;
  }.menu-toggle-label, .noti-toggle-label{
    font-size: 16px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1200px){
  .section{
    padding: 32px 160px 32px 32px;
  }
}
@media screen and (min-width: 1440px){
  .modal-noti{
    width: 50%;
  }
}
@media screen and (min-width: 1441px){
  .section{
    padding: 32px 28% 32px 32px;
  }
}


/*max-width*/

@media screen and (max-width: 991px){
  .modal-noti{
    left: 92px;
  }
}


/*Intercom Chat Launcher*/

.intercom-z8r230{
    bottom: 84px !important;
}

.intercom-launcher, .intercom-launcher-frame{
    bottom: 10px !important;
}


/*Status Section*/

.progress-container {
  position: absolute;
  left: 50%;
  transform:translateX(-50%);
  display: flex;
  width: 45vw;
  padding: 10px 0;
  margin: 0 auto;
  cursor: pointer;
  z-index: 10;
}

.progress-sbar {
  height: 2px;
  flex-grow: 1;
  border-radius: 4px;
  margin: 0 5px;
  display: flex;
  background-image: -webkit-linear-gradient(left, 
    rgba(255,255,255,.5) 0%,
    rgba(255,255,255,.5) 50%,
    rgba(88, 89, 104,.5) 50.001%,
    rgba(88, 89, 104,.5) 100%
  );
  background-repeat: no-repeat;
  background-size: 200%;
  /* background-color: #666; */
  background-color: #fff;
  background-position: 100% 50%;
  animation-timing-function: linear;
  animation-delay: .2s;
}

.progress-sbar.active {
    animation-name: Loader;
}

.progress-sbar.passed {
    background-position: 0 0; 
/*    animation-play-state: paused;*/
}

@-webkit-keyframes Loader {
  0%   { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

.stry_active{
    display: block;
}

.seen{
    display: none;
}

/************************/
/************************/
/***** DEBUG STYLES *****/
/************************/
/************************/

.pause{
  animation-play-state: paused;
}

/*
.pause .not-hovered {
  display: block;
}
.pause .hovered {
  display: none;
}

.pause:hover .not-hovered {
  display: none;
}
.pause:hover .hovered {
  display: block;
}
*/

body {
  background: #fff;
  margin: 0;
  /* padding: 50px;
  width: 100vw;
  height: 100vh; */
  font-family: sans-serif;
  box-sizing: border-box;
}

.story-box {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
  animation: showStory .3s ease-in both; 
  z-index: 9999;
}
.story-content{
  position: relative;
  display: flex;
  justify-content: center;
  height:100%;
}
[class^="st-arrow"]{
  width: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}
.st-arrow_left{
  left: 50px;
}
.st-arrow_right{
  right: 50px;
}
.story{
  position: relative;
}
.story img,.story video{
  height: 100%;
} 
.logo_box{
  display: flex;
  align-items: center;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
}
.logo_box img{
  width: 42px;
  margin-right: 10px;
}
.logo_box > div p{
  margin:0;
  color: #fff;
  line-height: 21px;
  user-select: none;
}
.logo_box .status_date{
  font-size: 15px;
}
.story-close{
  position: absolute;
  top: 6px;
  right: 16px;
  width: 48px;
  text-align: center;
  z-index: 1;
}
.story-close-btn{
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.status_links-msg{
  position: absolute;
  width: 100%;
  padding: 32px;
  bottom: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.status_links-msg .desc_status_txt,.status_links-msg span{
  font-weight: 600;
  color:#fff;
  width:50%;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.status_links-msg a{
  color: #fff;
  font-weight: 600;
}
.status_links-msg .desc_status_txt.read_more,.status_links-msg span.read_more{
  display: inline-block;
}

@keyframes showStory{
  from{transform: scale(0);opacity:0;}
  to{transform: scale(1);opacity:1;}
}

.dots_load{
    display: inline-block;
    height: 10px;
    width: 10px;
    background-color: white;
    border-radius: 25px;
    margin-right: 5px;
}
.dots1{
  opacity: 0;
  animation: dot1 .6s linear infinite;
}
.dots2{
  opacity: 0;
  animation: dot2 .6s linear 0.2s infinite;
}
.dots3{
  opacity: 0;
  animation: dot3 .6s linear 0.3s infinite;
}

@keyframes dot1{
  0%{opacity:0;}
  50%{opacity: 1;}
  100%{opacity:0;}
}
@keyframes dot2{
  0%{opacity:0;}
  50%{opacity: 1;}
  100%{opacity:0;}
}
@keyframes dot3{
  0%{opacity:0;}
  50%{opacity: 1;}
  100%{opacity:0;}
}

.remind_me{
    border: 1px solid #eceef2;
    color: #243978;
}
.remind_me:hover {
    box-shadow: 0px 8px 15px rgb(181 183 188 / 60%);
}
.scroll_enable_popup{
    overflow-y: auto;
    position: absolute;
    z-index: 999;
    padding: 0;
    height: 400px;
}
.site_setting b {
    color: var(--primary-color-bg);
}
.never_sticky{
    position: sticky;
    top: 0;
    background: #fff;
    padding: 10px;
}
.enable_content{
    padding: 20px;
}
.site_setting {
    padding: 0 20px;
}
.site_block{
    list-style:disc;
    padding: 0 20px;
}
.block_list {
    list-style: lower-alpha;
    padding: 0 20px;
}
.wt-1{
    width: 70%;
    margin: 0 auto;
}
.browser_img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.browser_lock {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

#enable_unflow{
    margin-top: 20px;
}

.scroll_enable_popup::-webkit-scrollbar {
  display:block;
  width: 8px;
  padding-left: 20px;
  border-radius: 12px;
  cursor: pointer;
}
.scroll_enable_popup::-webkit-scrollbar-track {
  background: var(--font-color-light); 
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}
/* Handle */
.scroll_enable_popup::-webkit-scrollbar-thumb {
  background: var(--primary-font-color); 
  border-radius: 12px;
}
#unread ul li:hover{
    cursor: pointer;
}
#read ul li:hover{
    cursor: pointer;
}

.primary_langs { margin : 2% 0; }
 
.primary_langs tr th {
    font-size: 18px;
    line-height: 24px;
    color: rgb(255, 255, 255);
	    border: 1px solid rgb(221, 221, 221);
    padding: 10px;
    background: rgb(36, 57, 120);
}

.primary_langs tr td {
    border: 1px solid rgb(221, 221, 221);
    padding: 10px;
    font-size: 14px;
}

.table-col tr th 
{
	    border: 1px solid rgb(221, 221, 221);
    padding: 10px;
    font-size: 14px;
    background: #fff;
}

.table-col tr td
{
padding : 10px;	border: 1px solid #ddd;
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-eur:before,
.glyphicon-euro:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}