/*****************************************************************
  Bricks main CSS
  PLEASE, DO NOT EDIT!!!
  18/05/2020 BCN 
  Author: FLT
  strategy: mobile first
******************************************************************/  

/* set padding and border compute for width/height size */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.2;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.9rem;
    font-weight: 400;
    -webkit-text-size-adjust: 110%;
    -ms-text-size-adjust: 110%;
    background-color: #fefefe;
    color: #404040;
    text-align: left;
    position: relative;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

p {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

a {
    text-decoration: none;
    background-color: transparent;
}

input,
button,
select,
optgroup,
textarea {
    background-color: #eee;
    border-radius: 4px;
    padding: 4px 8px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
input,
textarea {
    border: 1px solid #888;
}
input:focus,
textarea:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
}

[tabindex]:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: 0;
    /*outline: 1px dotted rgba(229, 151, 0, 1);*/
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

/************************************************************************
  bricks variable
*************************************************************************/
:root {
    --br_widthfactor: 1;
    --br_heightfactor: 1;
    
    --br_btnprimary-bg: #1f8222;
    --br_btnprimary-txt: #f0f0f0;
    --br_btnprimary-hover-bg: #2f9232;
    --br_btnprimary-hover-txt: #fefefe;
    --br_btndefault-bg: #007ACD;
    --br_btndefault-txt: #f0f0f0;
    --br_btndefault-hover-bg: #009AeD; /*209AeD; */
    --br_btndefault-hover-txt: #fefefe;
    --br_btncancel-bg: #c0c0c0;
    --br_btncancel-txt: #404040;
    --br_btncancel-hover-bg: #a8a8a8;
    --br_btncancel-hover-txt: #fefefe;
    --br_sepdefault-dark: #9D9D9D;
    --br_sepdefault-light: #FFFFFF;
 
    --menu_fontsize: 0.75rem;
}

/* width factor */
@media (max-width: 1200px) {
	.brick {
    	--br_widthfactor: 0.9;
	}
}
@media (max-width: 992px) {
	.brick {
    	--br_widthfactor: 0.8;
	}
}
@media (max-width: 768px) {
	.brick {
    	--br_widthfactor: 0.7;
	}
}
@media (max-width: 576px) {
	.brick {
    	--br_widthfactor: 0.6;
	}
}

/* height factor */
@media (max-height: 1024px) {
	.brick {
    	--br_heightfactor: 0.9;
	}
}
@media (max-height: 800px) {
	.brick {
    	--br_heightfactor: 0.8;
	}
}
@media (max-height: 640px) {
	.brick {
    	--br_heightfactor: 0.7;
	}
}
@media (max-height: 480px) {
	.brick {
    	--br_heightfactor: 0.6;
	}
}

/*************************************************************************
  Animations rules
***************************************************************************/
.br_animated.anim-grow {
    transform: scale(.8);
    transition: transform 2s 0s cubic-bezier(0,1,.3,1),
                filter 10s 2s ease-out;
    will-change: transform;
}
.br_animated.anim-grow-more {
    transform: none;
}
.br_animated.anim-fade_in {
    opacity: 0;
    transition: opacity 1s ease-out;
}
.br_animated.anim-rotate {
    transform: rotate(10deg);
    transition: transform 2s 0s cubic-bezier(0,1,.3,1),
                filter 10s 2s ease-out;
    will-change: transform;
}
.br_animated.anim-rotate_clock {
    transform: rotate(-10deg);
    transition: transform 2s 0s cubic-bezier(0,1,.3,1),
                filter 10s 2s ease-out;
    will-change: transform;
}
.br_animated.anim-right_left {
    transform: translateX(50px);
    transition: transform 4s 0s cubic-bezier(0,1,.3,1),
                filter 10s 2s ease-out;
    will-change: transform;
}
.br_animated.anim-left_right {
    transform: translateX(-50px);
    transition: transform 4s 0s cubic-bezier(0,1,.3,1),
                filter 10s 2s ease-out;
    will-change: transform;
}
.br_animated.anim-up_down {
    transform: translateY(-50px);
    transition: transform 4s 0s cubic-bezier(0,1,.3,1),
                filter 10s 2s ease-out;
    will-change: transform;
}
.br_animated.anim-down_up {
    transform: translateY(50px);
    transition: transform 4s 0s cubic-bezier(0,1,.3,1),
                filter 10s 2s ease-out;
    will-change: transform;
}
.br_animated.anim-grow.is-visible, 
.br_animated.anim-grow-more.is-visible, 
.br_animated.anim-rotate.is-visible,
.br_animated.anim-rotate_clock.is-visible,
.br_animated.anim-right_left.is-visible,
.br_animated.anim-left_right.is-visible,
.br_animated.anim-up_down.is-visible,
.br_animated.anim-down_up.is-visible {
    transform: none;
}
.br_animated.anim-fade_in.is-visible {
    opacity: 1;
}

.br_animated.anim-grow-more.is-visible {
    transform: scale(1.1);
    transition: transform 2s 0s cubic-bezier(0,1,.3,1),
                filter 10s 2s ease-out;
    will-change: transform;
} 

/********************************************************************
  bricks splitters
*********************************************************************/  
.br_vsplitter {
    background: var(--splitter-bg);
    width: 8px;
	height: 100%;
    cursor: col-resize;
}
.br_hsplitter {
    background: var(--splitter-bg);
    height: 8px;
	width: 100%;
    cursor: row-resize;
}

/********************************************************************
  viewport sizes
*********************************************************************/  
.br_vw100 {
    width: 100vw!important;
}
.br_vw75 {
    width: 75vw!important;
}
.br_vw50 {
    width: 50vw!important;
}
.br_vw25 {
    width: 25vw!important;
}

.br_vh100 {
    height: 100vh!important;
}
.br_vh75 {
    height: 75vh!important;
}
.br_vh50 {
    height: 50vh!important;
}
.br_vh25 {
    height: 25vh!important;
}

.br_vhw100 {
    width: 100vw!important;
    height: 100vh!important;
}

/********************************************************************
  widths percentages
*********************************************************************/  
.br_w5 {
	width: 5% !important;
}
.br_w10 {
	width: 10% !important;
}
.br_w15 {
	width: 15% !important;
}
.br_w20 {
	width: 20% !important;
}
.br_w25 {
	width: 25% !important;
}
.br_w30 {
	width: 30% !important;
}
.br_w35 {
	width: 35% !important;
}
.br_w40 {
	width: 40% !important;
}
.br_w45 {
	width: 45% !important;
}
.br_w50 {
	width: 50% !important;
}
.br_w55 {
	width: 55% !important;
}
.br_w60 {
	width: 60% !important;
}
.br_w65 {
	width: 65% !important;
}
.br_w70 {
	width: 70% !important;
}
.br_w75 {
	width: 75% !important;
}
.br_w80 {
	width: 80% !important;
}
.br_w85 {
	width: 85% !important;
}
.br_w90 {
	width: 90% !important;
}
.br_w95 {
	width: 95% !important;
}
.br_w100 {
	width: 100% !important;
}
.br_wauto {
	width: auto !important;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}


/********************************************************************
  heights percentages
*********************************************************************/  
.br_h5 {
	height: 5% !important;
}
.br_h10 {
	height: 10% !important;
}
.br_h15 {
	height: 15% !important;
}
.br_h20 {
	height: 20% !important;
}
.br_h25 {
	height: 25% !important;
}
.br_h30 {
	height: 30% !important;
}
.br_h35 {
	height: 35% !important;
}
.br_h40 {
	height: 40% !important;
}
.br_h45 {
	height: 45% !important;
}
.br_h50 {
	height: 50% !important;
}
.br_h55 {
	height: 55% !important;
}
.br_h60 {
	height: 60% !important;
}
.br_h65 {
	height: 65% !important;
}
.br_h70 {
	height: 70% !important;
}
.br_h75 {
	height: 75% !important;
}
.br_h80 {
	height: 80% !important;
}
.br_h85 {
	height: 85% !important;
}
.br_h90 {
	height: 90% !important;
}
.br_h95 {
	height: 95% !important;
}
.br_h100 {
	height: 100% !important;
}
.br_hauto {
	height: auto !important;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-height: 100%;
}

/********************************************************************
  margins
*********************************************************************/  
.br_m0 {
    margin: 0 !important;
}
.br_m2 {
    margin: 2px !important;
}
.br_m4 {
    margin: 4px !important;
}
.br_m8 {
    margin: 8px !important;
}
.br_m12 {
    margin: 12px !important;
}
.br_m16 {
    margin: 16px !important;
}
.br_m24 {
    margin: 24px !important;
}
.br_m32 {
    margin: 32px !important;
}
.br_mauto {
    margin: auto !important;
}


.br_ml0 {
    margin-left: 0 !important;
}
.br_ml2 {
    margin-left: 2px !important;
}
.br_ml4 {
    margin-left: 4px !important;
}
.br_ml8 {
    margin-left: 8px !important;
}
.br_ml12 {
    margin-left: 12px !important;
}
.br_ml16 {
    margin-left: 16px !important;
}
.br_ml24 {
    margin-left: 24px !important;
}
.br_ml32 {
    margin-left: 32px !important;
}
.br_mlauto {
    margin-left: auto !important;
}


.br_mr0 {
    margin-right: 0 !important;
}
.br_mr2 {
    margin-right: 2px !important;
}
.br_mr4 {
    margin-right: 4px !important;
}
.br_mr8 {
    margin-right: 8px !important;
}
.br_mr12 {
    margin-right: 12px !important;
}
.br_mr16 {
    margin-right: 16px !important;
}
.br_mr24 {
    margin-right: 24px !important;
}
.br_mr32 {
    margin-right: 32px !important;
}
.br_mrauto {
    margin-right: auto !important;
}


.br_mt0 {
    margin-top: 0 !important;
}
.br_mt2 {
    margin-top: 2px !important;
}
.br_mt4 {
    margin-top: 4px !important;
}
.br_mt8 {
    margin-top: 8px !important;
}
.br_mt12 {
    margin-top: 12px !important;
}
.br_mt16 {
    margin-top: 16px !important;
}
.br_mt24 {
    margin-top: 24px !important;
}
.br_mt32 {
    margin-top: 32px !important;
}
.br_mtauto {
    margin-top: auto !important;
}


.br_mb0 {
    margin-bottom: 0 !important;
}
.br_mb2 {
    margin-bottom: 2px !important;
}
.br_mb4 {
    margin-bottom: 4px !important;
}
.br_mb8 {
    margin-bottom: 8px !important;
}
.br_mb12 {
    margin-bottom: 12px !important;
}
.br_mb16 {
    margin-bottom: 16px !important;
}
.br_mb24 {
    margin-bottom: 24px !important;
}
.br_mb32 {
    margin-bottom: 32px !important;
}
.br_mbauto {
    margin-bottom: auto !important;
}


.br_mx0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.br_mx2 {
    margin-left: 2px !important;
    margin-right: 2px !important;
}
.br_mx4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
}
.br_mx8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
}
.br_mx12 {
    margin-left: 12px !important;
    margin-right: 12px !important;
}
.br_mx16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
}
.br_mx24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
}
.br_mx32 {
    margin-left: 32px !important;
    margin-right: 32px !important;
}
.br_mxauto {
    margin-left: auto !important;
    margin-right: auto !important;
}


.br_my0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.br_my2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
}
.br_my4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
}
.br_my8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}
.br_my12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}
.br_my16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
}
.br_my24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}
.br_my32 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
}
.br_myauto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}


/********************************************************************
  paddings
*********************************************************************/  
.br_p0 {
    padding: 0 !important;
}
.br_p2 {
    padding: 2px !important;
}
.br_p4 {
    padding: 4px !important;
}
.br_p8 {
    padding: 8px !important;
}
.br_p12 {
    padding: 12px !important;
}
.br_p16 {
    padding: 16px !important;
}
.br_p24 {
    padding: 24px !important;
}
.br_p32 {
    padding: 32px !important;
}


.br_pl0 {
    padding-left: 0 !important;
}
.br_pl2 {
    padding-left: 2px !important;
}
.br_pl4 {
    padding-left: 4px !important;
}
.br_pl8 {
    padding-left: 8px !important;
}
.br_pl12 {
    padding-left: 12px !important;
}
.br_pl16 {
    padding-left: 16px !important;
}
.br_pl24 {
    padding-left: 24px !important;
}
.br_pl32 {
    padding-left: 32px !important;
}


.br_pr0 {
    padding-right: 0 !important;
}
.br_pr2 {
    padding-right: 2px !important;
}
.br_pr4 {
    padding-right: 4px !important;
}
.br_pr8 {
    padding-right: 8px !important;
}
.br_pr12 {
    padding-right: 12px !important;
}
.br_pr16 {
    padding-right: 16px !important;
}
.br_pr24 {
    padding-right: 24px !important;
}
.br_pr32 {
    padding-right: 32px !important;
}


.br_pt0 {
    padding-top: 0 !important;
}
.br_pt2 {
    padding-top: 2px !important;
}
.br_pt4 {
    padding-top: 4px !important;
}
.br_pt8 {
    padding-top: 8px !important;
}
.br_pt12 {
    padding-top: 12px !important;
}
.br_pt16 {
    padding-top: 16px !important;
}
.br_pt24 {
    padding-top: 24px !important;
}
.br_pt32 {
    padding-top: 32px !important;
}


.br_pb0 {
    padding-bottom: 0 !important;
}
.br_pb2 {
    padding-bottom: 2px !important;
}
.br_pb4 {
    padding-bottom: 4px !important;
}
.br_pb8 {
    padding-bottom: 8px !important;
}
.br_pb12 {
    padding-bottom: 12px !important;
}
.br_pb16 {
    padding-bottom: 16px !important;
}
.br_pb24 {
    padding-bottom: 24px !important;
}
.br_pb32 {
    padding-bottom: 32px !important;
}


.br_px0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.br_px2 {
    padding-left: 2px !important;
    padding-right: 2px !important;
}
.br_px4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
}
.br_px8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}
.br_px12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
}
.br_px16 {
    padding-left: 16px !important;
    padding-right: 16px !important;
}
.br_px24 {
    padding-left: 24px !important;
    padding-right: 24px !important;
}
.br_px32 {
    padding-left: 32px !important;
    padding-right: 32px !important;
}


.br_py0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.br_py2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}
.br_py4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}
.br_py8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}
.br_py12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}
.br_py16 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}
.br_py24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}
.br_py32 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}

/********************************************************************
  flex alignments rules
*********************************************************************/  
.br_flex {
    display: -webkit-flex;
    display: -ms-flexbox ;
    display: flex;
    -ms-flexbox-shrink: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.br_flexh {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flexbox-shrink: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.br_flexv {
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flexbox-shrink: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.br_flexleft {
    margin-right: auto !important;
}
.br_flexright {
    margin-left: auto !important;
}
.br_flextop {
    margin-bottom: auto !important;
}
.br_flexbottom {
    margin-top: auto !important;
}
.br_flexvcenter {
    margin-top: auto !important;
    margin-bottom: auto !important;
}
.br_flexhcenter {
    margin-left: auto !important;
    margin-right: auto !important;
}
.br_flexfill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}
.br_flexwrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.br_flexnowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.br_flexhreverse {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.br_flexvreverse {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/********************************************************************
  overflow
*********************************************************************/  
.br_ofhidden {
    overflow: hidden!important;
}
.br_ofauto {
    overflow: auto!important;
}
.br_ofxauto {
    overflow-x: auto!important;
}
.br_ofyauto {
    overflow-y: auto!important;
}
.br_ofvisible {
    overflow: visible!important;
}
.br_ofxvisible {
    overflow-x: visible!important;
}
.br_ofyxvisible {
    overflow-y: visible!important;
}

/********************************************************************
  display
*********************************************************************/  
.br_pstatic {
    position: static;
}
.br_prelative {
    position: relative;
}
.br_pabsolute {
    position: absolute;
}
.br_pfixed {
    position: fixed;
}

/********************************************************************
  display
*********************************************************************/  
.br_dnone {
    display: none;
}
.br_dblock {
    display: block;
}
.br_dinlineblock {
    display: inline-block;
}
.br_dinline {
    display: inline;
}
.br_dtable {
    display: table-cell;
}


/********************************************************************
  holder
*********************************************************************/
.br_holder {
    width: 99%;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .br_holder {
        max-width: 740px;
    }
}
@media (min-width: 992px) {
    .br_holder {
        max-width: 980px;
    }
}
@media (min-width: 1200px) {
    .br_holder {
        max-width: 1160px;
    }
}

/********************************************************************
  fonts
*********************************************************************/  
.br_f6pt {
    font-size: .5rem;
}
.br_f7pt {
    font-size: .5833rem;
}
.br_f8pt {
    font-size: .6667rem;
}
.br_f9pt {
    font-size: .75rem;
}
.br_f10pt {
    font-size: .8333rem;
}
.br_f11pt {
    font-size: .9167rem;
}
.br_f12pt {
    font-size: 1rem;
}
.br_f14pt {
    font-size: 1.1667rem;
}
.br_f16pt {
    font-size: 1.3333rem;
}
.br_f18pt {
    font-size: 1.5rem;
}
.br_f20pt {
    font-size: 1.6667rem;
}
.br_f24pt {
    font-size: 2rem;
}
.br_f28pt {
    font-size: 2.3333rem;
}
.br_f32pt {
    font-size: 2.6667rem;
}
.br_f36pt {
    font-size: 3rem;
}
.br_f42pt {
    font-size: 3.5rem;
}
.br_f48pt {
    font-size: 4rem;
}
.br_f72pt {
    font-size: 6rem;
}

/********************************************************************
  backgrounds
*********************************************************************/  
.br_card {
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
}
.br_rounded2 {
    border-radius: 0.125rem;
}
.br_rounded4 {
    border-radius: 0.25rem;
}
.br_rounded6 {
    border-radius: 0.375rem;
}
.br_rounded8 {
    border-radius: 0.5rem;
}
.br_shadow {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.3) !important;
}

/********************************************************************
  text alignements
*********************************************************************/  
.br_txtleft {
    text-align: left !important;
}
.br_txtright {
    text-align: right !important;
}
.br_txtcenter {
    text-align: center !important;
}
.br_txtjustify {
    text-align: justify !important;
}

/********************************************************************
  floats
*********************************************************************/  
.br_floatleft {
    float: left !important;
}
.br_floatright {
    float: right !important;
}
.br_floatnone {
    float: none !important;
}

/*****************************************************************
  buttons
******************************************************************/
.br_btn, .br_btndefault, .br_btnprimary {
    display: inline-block;
    color: var(--br_btndefault-txt);
    font-size: 0.9rem;
    padding: 6px 10px !important;
    border-radius: 3px;
    vertical-align: middle;
    line-height: 110%;
    margin: 0;
    outline: none;
    border: none;
}
.br_btndefault {
    background-color: var(--br_btndefault-bg);
    color: var(--br_btndefault-txt);
}

.br_btnprimary {
    background-color: var(--br_btnprimary-bg);
    color: var(--br_btnprimary-txt);
}
.br_btnprimary:hover {
    background-color: var(--br_btnprimary-hover-bg);
    color: var(--br_btnprimary-hover-txt);
}

.br_btn:hover,
.br_btndefault:hover {
    background-color: var(--br_btndefault-hover-bg);
    color: var(--br_btndefault-hover-txt)!important;
}
.br_btncancel {
    display: inline-block;
    background-color: var(--br_btncancel-bg);
    color: var(--br_btncancel-txt);
    font-size: 0.9rem;
    padding: 6px 10px !important;
    border-radius: 3px;
    vertical-align: middle;
    line-height: 110%;
    margin: 0;
    border: none;
}
.br_btncancel:hover {
    background-color: var(--br_btncancel-hover-bg);
    color: var(--br_btncancel-hover-txt);
}
.br_btn:focus, 
.br_btndefault:focus,
.br_btncancel:focus {
    box-shadow: 0 0 3px rgba(0, 100, 250, 0.3);
}

.br_btn-small {
    font-size: 0.8rem;
    padding: 4px 8px !important;
}


/********************************************************************
  bricks menus
*********************************************************************/  

.br_menu {
    display: -ms-flexbox !important;
    display: flex !important;
    flex-direction: row;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    /* avoi to select menu text with mouse */
    user-select: none;          /* supported by Chrome and Opera */
    -webkit-user-select: none;  /* Safari */
    -khtml-user-select: none;   /* Konqueror HTML */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;
}

.br_rotate-90 {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    white-space: nowrap;
    display: inline-block;
    /*margin: 10px 0 !important;*/
    padding: 16px 4px !important;
    overflow: visible;

    /* Legacy vendor prefixes that you probably don't need... */

    /* Safari */
    -webkit-transform: rotate(180deg);

    /* Firefox */
    -moz-transform: rotate(180deg);

    /* IE */
    -ms-transform: rotate(180deg);

    /* Opera */
    -o-transform: rotate(180deg);

    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.br_menuitem {
    display: block;
    position: relative;
    padding: 5px 16px;
    list-style: none;
    white-space: nowrap;
}
.br_menuitem:hover {
    background-color: #3456a9;
    color: #f0f0f0;
}

.br_popupmenu {
    display: none;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    border-radius: 2px;
    z-index: 1000;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.5); 
}

.br_popupmenu.show {
    display: -ms-flexbox !important;
    display: flex !important;
}
.br_menuitem:hover > .br_popupmenu:not(.canshow) {
    display: none !important;
}

/* vertical menu */
.br_vmenu {
    flex-direction: column !important;
    padding: 2px 0;
    overflow: visible;
    width: auto;
    min-width: auto;
}
/*.br_menuitem:hover > .br_vmenu {*/
/*    display: -ms-flexbox !important;*/
/*    display: flex !important;*/
/*}*/
.br_hmenu .br_menuitem {
    margin-top: auto;
    margin-bottom: auto;
}
/* sub menu */
.br_vmenu .br_vmenu {
    top: 2px;
    left:calc(100% - 2px);
}

.br_menuvseparator {
    width: 2px;
    border-left: 1px solid var(--br_sepdefault-dark);
    border-right: 1px solid var(--br_sepdefault-light);
    margin: 4px 3px;
}
.br_menuseparator {
    width: 2px;
    margin: 4px 3px;
}
.br_vmenuright {
    left: auto !important;
    right: 0 !important;
}

/*tabs*/
.br_tabs {
    display: -ms-flexbox !important;
    display: flex !important;
    flex-direction: row;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    /* avoi to select menu text with mouse */
    user-select: none;          /* supported by Chrome and Opera */
    -webkit-user-select: none;  /* Safari */
    -khtml-user-select: none;   /* Konqueror HTML */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;
}
.br_tabitem {
    display: block;
    position: relative;
    padding: 3px 16px;
    list-style: none;
    white-space: nowrap;
}
.br_tabitem:hover {
    background-color: #e0e0e0;
}
.br_tabitem.active:not(.br_rotate-90) {
    background-color: #f2f2f2;
    border-bottom: 3px solid #2675BF;
}
.br_tabitem.active.br_rotate-90 {
    background-color: #ffffff;
    border-left: 3px solid #2675BF;
}

/******************************************************
  popup rules
*******************************************************/

.br_popupoverlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.01);
    z-index: 1000;
}

.br_popupoverlay .br_vmenu {
    top: 0;
    display: -ms-flexbox !important;
    display: flex !important;
}

.modal-sm {
  max-width: 300px;
}

.modal-xl {
    max-width: 600px;
}

.modal-xxl {
    max-width: 75%;
}

/*.modal-body-dark {*/
/*	color: var(--brick-txt-2);*/
/*	background-color: var(--brick-bg-3);*/
/*}*/

.modal-content {
	box-shadow: 3px 3px 6px rgba(0, 0, 0, .6);    
}

.fontsize6 {
	font-size: 0.6rem;
}

.fontsize7 {
	font-size: 0.7rem;
}
.fontsize8 {
	font-size: 0.8rem;
}
.fontsize9 {
	font-size: 0.9rem;
}
.fontsize10 {
	font-size: 1rem;
}

.fontsize11 {
	font-size: 1.1rem;
}

.fontsize12 {
	font-size: 1.2em;
}

.fontsize15 {
	font-size: 1.5rem;
}

.fontsize20 {
	font-size: 2rem;
}

.br_toast {
	z-index: 1060;
    max-width: 350px;
    overflow: hidden;
    font-size: 0.875rem;
    background-color: rgba(240, 240, 240, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed ;
    
    border-radius: 0.25rem;
}
.br_toast2 {
    position: absolute;
    background-color: red;
    border-radius: 0.25rem;
    border: 1px solid green;
    
}
.br_fade-out {
    opacity: 0;
}

.br_fade-in {
    opacity: 1;
}

.br_fade {
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    will-change: opacity;
}

.br_toast-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.25rem 0.75rem;
    color: #f0f0f0;
    background-color: rgba(0, 123, 255, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.br_toast-body {
    padding: 0.75rem;
	color: #404040;
	min-width: 200px;
}

.br_toast.br_show {
    /*visibility: visible;*/
    /*display: block;*/
    opacity: 1;
    
}

.br_toast.br_hide {
    opacity: 0;
   /*display: none;*/
}

/*************************************************************************
  slides for brick carousel
**************************************************************************/  
.br_slider_prev,
.br_slider_next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .br_slider_prev,
  .br_slider_next {
    transition: none;
  }
}

.br_slider_prev:hover, .br_slider_prev:focus,
.br_slider_next:hover,
.br_slider_next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.br_slider_prev {
  left: 0;
}

.br_slider_next {
  right: 0;
}

.br_slider_prev_icon,
.br_slider_next_icon {
  display: inline-block; 
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%;
}

.br_slider_prev_icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='https://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.br_slider_next_icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='https://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.br_slider_indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.br_slider_indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .br_slider_indicators li {
    transition: none;
  }
}

.br_slider_indicators .active {
  opacity: 1;
}


/********************************************************
 br_modal rules
 *******************************************************/
 
.br_modal {
    position: fixed;
    display: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1050;
    background: rgba(0,0,0,0.3);
}

.br_modal .br_modal-card {
    background-color: var(--modal-bg);
    top: calc(100% / 3);
    left: calc(100% / 3);
    position: absolute;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    font-size: 1.1rem;
    min-width: 300px;
    min-height: 80px;
}

.br_modal .br_modal-header {
    display: flex;
    padding: 6px 16px; 
    padding-right: 4px;
    background-color: var(--modal-header-bg);
    vertical-align: middle;
    color: var(--dialog-header-txt);
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 0.9rem;
    pointer-events: auto;
}

.br_modal .br_modal-header:hover {
    background-color: var(--modal-header-bg-hover);
}

.br_modal .br_modal-header .btntimes {
    color: var(--modal-times-color);
    text-shadow: 0 2px 0 #444;
    padding: 4px 8px;
    border-radius: 2px;
}

.br_modal .br_modal-header .btntimes:hover {
    background-color: #aa0000;
    /*color: var(--modal-times-color);*/
}

.br_modal .br_modal-body {
    position: relative;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    /*min-height: 40px;*/
    /*max-width: 400px;*/
    padding: 16px 16px;
    color: var(--brick-txtl-3);
    /*text-align: center;*/
}

.br_modal .br_modal-footer {
    display: flex;
    padding: 6px 16px;
    vertical-align: center;
    color: var(--brick-txtl-3);
    font-size: 0.8rem;
    -moz-border-radius-bottomleft: 4px;
    -moz-border-radius-bottomright: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: var(--modal-footer-bg);
    flex-direction: row;
    justify-content: flex-end;
    color: var(--modal-footer-txt);
}

.br_modal .br_modal-footer button {
    color: var(--brick-bluel-1);
    font-weight: 400;
}

.br_modal .br_modal-footer button:hover {
    color: var(--brick-txtl-1);
}

.br_modal .br_modal-card .resizable {
    position: absolute;
    display: none;
    width: 10px;
    height: 10px;
    right: 0px;
    bottom: 0px;
    cursor: nwse-resize;
}


.br_template {
    display: none !important;    
}


.progressoverlay {
    display: none;
    flex-direction: column;
    position:absolute;
    left:0;
    top:0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);    
    z-index: 1040;
}

.progresstext {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
}

.loader {
    border: 8px solid #0468ab;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 1.3s linear infinite; /* Safari */
    animation: spin 1.3s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.br_overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: rgba(0,0,0,0.5);
}

.br_picture {
    position: relative;
    margin: auto!important;
    padding: 6px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}

.br_image {
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
}

.br_rightarrow,
.br_leftarrow {
    display:flex;
    position: absolute;
    top:0;
    bottom: 0;
    width: 80px;
    cursor: pointer;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    transition: all 0.25s ease;
    
}
.br_leftarrow { 
   left: 0;
 }
.br_rightarrow {
   right: 0;
 }
 
.br_righticon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50% / 100% 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='https://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.br_lefticon {
    display: inline-block;
  width: 20px;
  height: 20px;
    background: no-repeat 50% / 100% 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='https://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.br_picture:hover .br_rightarrow,
.br_picture:hover .br_leftarrow {
    background: rgba(0,0,0,0.3);
    opacity: 1;
    transition: all 0.25s ease;
}

.br_selnone{
    /* avoi to select menu text with mouse */
    user-select: none;          /* supported by Chrome and Opera */
    -webkit-user-select: none;  /* Safari */
    -khtml-user-select: none;   /* Konqueror HTML */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;
}

.br_noevents {
    pointer-events: none;
}
.br_wordwrap {
    word-wrap: break-word;   
}
.br_wordbreak {
    word-break: break-all;   
}
.br_cpointer {
    cursor: pointer;
}
.br_ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.br_nowrap {
    white-space: nowrap;
}


