/* `Basic HTML
----------------------------------------------------------------------------------------------------*/

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    font-family: 'Open Sans', sans-serif;
}

p {
    font-weight: 400;
}

pre,
code {}

hr {
    border: 0 #ccc solid;
    border-top-width: 1px;
    clear: both;
    height: 0;
}


/* `general Classes
----------------------------------------------------------------------------------------------------*/

.no_bg {
    background: none !important;
}

.strong {
    font-weight: bold !important;
}

.extrastrong {
    font-weight: 800 !important;
}

.semistrong {
    font-weight: 600 !important;
}

.light {
    font-weight: 400 !important;
}

.uppercase {
    text-transform: uppercase !important;
}

.fLeft {
    float: left;
}

.fRight {
    float: right;
}

.noBtmPad {
    padding-bottom: 0 !important;
}

.noTopPad {
    padding-top: 0 !important;
}

.noRi8Pad {
    padding-right: 0 !important;
}

.noLftPad {
    padding-left: 0 !important;
}

.no_pad_left {
    padding-left: 0 !important;
}

.noBtmMar {
    margin-bottom: 0 !important;
}

.noRi8Mar {
    margin-right: 0 !important;
}

.noLftMar {
    margin-left: 0 !important;
}

.noTopMar {
    margin-top: 0 !important;
}

.noBtmBord {
    border-bottom: 0 !important;
}

.noRi8Bord {
    border-right: 0 !important;
}

.noLftBord {
    border-left: 0 !important;
}

.noTopBord {
    border-top: 0 !important;
}

.text_left {
    text-align: left !important;
}

.text_center {
    text-align: center !important;
}

.text_right {
    text-align: right !important;
}

.relative {
    position: relative !important;
}

.posRel {
    position: relative !important;
}

.w100 {
    width: 100px !important;
}

.w150 {
    width: 150px !important;
}

.w200 {
    width: 200px !important;
}

.w250 {
    width: 250px !important;
}

.w300 {
    width: 300px !important;
}

.w350 {
    width: 350px !important;
}

.w400 {
    width: 400px !important;
}

.not-allowed {
    cursor: not-allowed !important;
}

.not-clickable {
    pointer-events: none !important;
}

.cur-pointer {
    cursor: pointer !important;
}

.btmBord {
    border-bottom: 1px solid [main_bordcolor] !important;
}

.topBord {
    border-top: 1px solid [main_bordcolor] !important;
}

.semicircle {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.fullcircle {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.maincircle {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.green-icon {
    color: #1ba323;
    margin-right: 4px;
}

.orange-icon {
    color: #eeb200;
    margin-right: 4px;
}


/*support css*/

a.support {
    background: url(../images/default/support.png) no-repeat 0 0;
    height: 105px;
    margin-top: -55px;
    padding: 0 !important;
    position: fixed !important;
    text-indent: -9000px;
    top: 50% !important;
    width: 36px !important;
    z-index: 999 !important;
}


/* `Headings
----------------------------------------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: lighter;
    font-style: normal;
    color: #22282b;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 10px;
}

h1 {
    font-size: 26px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

.container h3 {
    font-weight: 400;
}


/* Spacing
----------------------------------------------------------------------------------------------------*/

ol {
    list-style: decimal;
}

ul {
    list-style: disc;
    font-size: 12px;
}

li {
    margin-left: 0;
    vertical-align: text-top;
}

/* tinymce image toolbox z-index */
.mce-floatpanel {z-index: 100100 !important;}


/* dynamic div height start */
.dynamic-height-wrap {
  overflow: hidden;
  position: relative;
  -webkit-transition: max-height 0.25s ease-in-out;
  -moz-transition: max-height 0.25s ease-in-out;
  -o-transition: max-height 0.25s ease-in-out;
  transition: max-height 0.25s ease-in-out;
  width: 100%;
}

/* Bottom gradient (optional, but recommended)*/
.dynamic-height-active .dynamic-height-wrap:before {
  background: -moz-linear-gradient(top,  rgba(240,249,255,0) 0%, rgba([dynamic_height_rgb],1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(240,249,255,0)), color-stop(100%,rgba([dynamic_height_rgb],1)));
  background: -webkit-linear-gradient(top,  rgba(240,249,255,0) 0%,rgba([dynamic_height_rgb],1) 100%);
  background: -o-linear-gradient(top,  rgba(240,249,255,0) 0%,rgba([dynamic_height_rgb],1) 100%);
  background: -ms-linear-gradient(top,  rgba(240,249,255,0) 0%,rgba([dynamic_height_rgb],1) 100%);
  background: linear-gradient(to bottom,  rgba(240,249,255,0) 0%,rgba([dynamic_height_rgb],1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f0f9ff', endColorstr='#ffffff',GradientType=0 );
  bottom: 0;
  content:'';
  height: 30px;
  left: 0;
  position: absolute;
  right: 0;
  /*z-index: 1;*/
}

.facebox .dynamic-height-active .dynamic-height-wrap:before,
.dynamic-height-active .white.dynamic-height-wrap:before {
  background: -moz-linear-gradient(top,  rgba(240,249,255,0) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(240,249,255,0)), color-stop(100%,rgba(255,255,255,1)));
  background: -webkit-linear-gradient(top,  rgba(240,249,255,0) 0%,rgba(255,255,255,1) 100%);
  background: -o-linear-gradient(top,  rgba(240,249,255,0) 0%,rgba(255,255,255,1) 100%);
  background: -ms-linear-gradient(top,  rgba(240,249,255,0) 0%,rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom,  rgba(240,249,255,0) 0%,rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f0f9ff', endColorstr='#ffffff',GradientType=0 ); 
}

.dynamic-height-active .dynamic-show-more {
  display: inline-block;
}
.dynamic-show-more {
  display: none;
}

.show-hide-button {
  border: none;
  font-size: 11px;
}

.dynamic-height-wrap {
  margin-bottom: 0px;
}
/* dynamic div height start */