/**
 * General css objects.
 *
 * @author		ivo.fortes@maria-design.pt
 * @date		2019-05-26
 * @version		1.0
 */
/* General +++++++++++++++++++++++++++++ */
body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	color: #000000;
    overflow: hidden;
}

* {
    box-sizing: border-box;
}

.clear {
    clear: both;
}


/* Layout Header +++++++++++++++++++++++++++++ */
.layout-box-header {
    display: grid;
    grid: 60px / auto auto;
    grid-gap: 0px;
	border-bottom: 2px solid #777777;
}

.layout-box-header>.title {
	padding: 10px 20px 0px 20px;
    font-size: 34px;
    font-weight: bold;
    text-align: left;
}

.layout-box-header>.buttons {
	padding: 10px 20px 0px 20px;
    text-align: right;
}

.layout-box-header>.buttons>.maria_design-component-button {
	width: 100px;
}


/* Layout Body Menu +++++++++++++++++++++++++++++ */
.layout-box-body-menu {
	display: grid;
    grid: auto / 200px auto;
    grid-gap: 0px;
}

.layout-box-body-menu>.menu {
	width: 100%;
}

.layout-box-body-menu>.menu>.item {
	width: 100%;
	border-bottom: 1px solid #000000;
	text-align: left;
	padding: 15px 10px;
	font-size: 14px;
    cursor: pointer;
}

.layout-box-body-menu>.menu>.item:hover {
	background-color: #dce1f1;
}

.layout-box-body-menu>.menu>.item-on {
	width: 100%;
	border-bottom: 1px solid #000000;
	text-align: left;
	padding: 15px 10px;
	font-size: 14px;
    font-weight: bold;
	background-color: #abbaee;
}

.layout-box-body-menu>.content {
	width: 100%;
	height: calc(100vh - 62px);
	border-left: 2px solid #777777;
}


/* Layout Columns Placements +++++++++++++++++++++++++++++ */
.webinar_layout_row {
	width: 100%;
	min-height: 40px;
}

.webinar_layout_col_12 {
	width: 100%;
    padding-right: 10px;
    padding-bottom: 10px;
}
 
/*
 To Left
*/
.webinar_layout_col_1 {
    float: left;
	width: 8.33%;
    padding-right: 10px;
    padding-bottom: 10px;
}

.webinar_layout_col_2 {
    float: left;
	width: 16.66%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_3 {
    float: left;
	width: 25%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_4 {
    float: left;
	width: 33.33%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_5 {
    float: left;
	width: 41.66%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_6 {
    float: left;
	width: 50%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_7 {
    float: left;
	width: 58.33%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_8 {
    float: left;
	width: 66.66%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_9 {
    float: left;
	width: 75%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_10 {
    float: left;
	width: 83.33%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_11 {
    float: left;
	width: 91.33%;
	padding-right: 10px;
	padding-bottom: 10px;
}


/*
 To Right
*/
.webinar_layout_col_1_right {
    float: right;
	width: 8.33%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_2_right {
    float: right;
	width: 16.66%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_3_right {
    float: right;
	width: 25%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_4_right {
    float: right;
	width: 33.33%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_5_right {
    float: right;
	width: 41.66%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_6_right {
    float: right;
	width: 50%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_7_right {
    float: right;
	width: 58.33%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_8_right {
    float: right;
	width: 66.66%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_9_right {
    float: right;
	width: 75%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_10_right {
    float: right;
	width: 83.33%;
	padding-right: 10px;
	padding-bottom: 10px;
}

.webinar_layout_col_11_right {
    float: right;
	width: 91.33%;
	padding-right: 10px;
	padding-bottom: 10px;
}


/* Popup +++++++++++++++++++++++++++++ */
.webinar-popup {
	display: none;
	position: fixed;
	z-index: 4;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
}

.webinar-popup>.dlg {
	margin: 0 auto;
    width: 600px;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    background: #555555;
    border: 1px solid #dddddd;
    padding: 20px;
}

.webinar-popup>.dlg>.body {
	width: 100%
	height:100px;
	line-height: 100px;
	text-align: center;
	font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.webinar-popup>.dlg>.body-multiline {
	width: 100%
	height:100px;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.webinar-popup>.dlg>.footer {
    text-align: right;
}

.webinar-popup>.dlg>.footer>.maria_design-component-button {
	width: 100px;
}

.webinar-popup>.dlg>.body-input {
	width: 100%
}

.body-input .maria_design-component-text>label {
    color: #ffffff;
}


/* Tooltip +++++++++++++++++++++++++++++ */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #282627;
    color: #ffffff;
    line-height: 12px;
    font-size: 12px;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 110%;
    left: 50%;
    opacity: 0;
    transition: opacity 0.3s;
    transform: translateX(-50%);
    white-space: nowrap;
    font-weight: 500;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #282627 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}