/*******************************************************************************
*
* Main styles for the website dashboard
*
*******************************************************************************/

/**** CSS Reset ****/

/* CSS Reset */
aside, article, section, header, footer, nav {
  display: block;
}
html {
  height: 100%;
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 13px;
  }
}
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  box-sizing: border-box;
  min-height: 100vh;
}
* {
  font-family: 'Montserrat', sans-serif;
}
p {
  line-height: 1.4em;
}


/**** Page Structure Elements ****/

/* Page with Side Navigation */
.sidebar_page {
  position: relative;
  display: block;
  width: calc(100% - 12.5rem);
  min-height: 100vh;
  margin-left: 12.5rem;
  background: #FBFBFB;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  .sidebar_page {
    width: calc(100% - 40px);
    margin-left: 40px;
  }
}

/* Padded Content */
.padded_page_contents {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 3rem 4.6875rem .5rem;
  background: #FBFBFB;
}
.padded_page_contents:not(:first-child) {
  padding: 2.5rem 4.6875rem;
}
@media only screen and (max-width: 768px) {
  .padded_page_contents,
  .padded_page_contents:not(:first-child) {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Page title */
.padded_page_contents .page_title {
  margin-bottom: 33.5px;
}
.padded_page_contents h1.page_title {
  color: black;
  font-size: 3.125rem;
  margin-top: 0px;
}
.padded_page_contents .page_title h1 {
  color: black;
  font-size: 3.125rem;
  margin-top: 0px;
  margin-bottom: 0px;
}

.padded_page_contents h1 {
  text-transform: none;
}
.padded_page_contents:not(:first-child) h1 {
  margin-top: 0;
}
.padded_page_contents:not(:first-child) > h1 {
  margin-bottom: 1.3em;
}


.padded_page_contents:not(:first-child) h1 {
  margin-top: 0;
}
.padded_page_contents:not(:first-child) > h1 {
  margin-bottom: 1.3em;
}


/**** Page Bar ****/

/* Page Bar */
.page_bar,
.tabs_bar {
  position: relative;
  display: block;
  padding-left: 4.6875rem;
  padding-right: 4.6875rem;
  max-width: 100%;
  overflow-y: visible;
}
.tabs_bar {
  background: none;
}
.page_bar a,
.tabs_bar a {
  position: relative;
  font-weight: bold;
  margin-right: 2rem;
  line-height: 2.5rem;
  text-decoration: none;
}
.tabs_bar a {
  color: #6D6D6D;
}
.tabs_bar a:not(:first-child) {
  margin-left: 2rem;
}
.tabs_bar a:not(:first-child):after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(-2rem - 1px);
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  background: #6D6D6D;
}
.page_bar a:hover,
.tabs_bar a:hover {
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .page_bar,
  .tabs_bar {
    padding-left: 2rem;
  }
}

/* Page bar menus */
.page_bar_menu {
  position: relative;
  display: inline-block;
  margin-right: 1em;
}
.page_bar_menu:hover {
  cursor: pointer;
}
.page_bar_menu:hover .page_bar_dropdown {
  display: block !important;
}
.page_bar_menu:after,
.page_bar_menu:before {
  position: absolute;
  display: block;
  content: '';
  top: calc(50% - .275em);
  right: calc(15% - .1em);
  width: .2em;
  height: .75em;
  background: currentColor;
  transform: translateY(-50%) rotate(135deg);
  transform-origin: left;
}
.page_bar_menu:after {
  top: calc(50% + .275em);
  right: calc(15% + .1em);
  transform-origin: right;
  transform: translateY(-50%) rotate(45deg);
}
.page_bar_menu:hover:after,
.page_bar_menu:hover:before {
  top: calc(50%);
  right: calc(20% + .1em);
  transform: translateY(-50%) rotate(225deg);
}
.page_bar_menu:hover:after {
  transform: translateY(-50%) rotate(135deg);
}
.page_bar_menu:hover:before {
  right: calc(20% - .65em);
}

.page_bar_dropdown {
  display: none;
  position: absolute;
  top: 30px;
  left: -1rem;
  padding: 0.5rem 1rem;
  z-index: 1;
}
.page_bar_dropdown a {
  white-space: nowrap;
  margin-right: 0px;
  display: block;
  font-weight: normal;
}
.page_bar_dropdown a:hover {
  font-weight: bold;
}

/* Forms inside page bar */
.page_bar .form_container {
  position: absolute;
  display: block;
  top: 0;
  right: 1rem;
  margin: 0;
  margin-right: 2rem;
  width: auto;
}
.page_bar .form_container .input_row_input {
  position: relative;
  margin: 0;
}
.page_bar .form_container .input_row_input input {
  position: relative;
  height: 38px;
}

/* Page bar split in three */
.page_bar_three_split a {
  width: 33%;
  display: inline-block;
  margin: 0px;
}
.page_bar_three_split a:nth-child(2) {
  text-align: center;
}
.page_bar_three_split a:nth-child(3) {
  text-align: right;
}


/**** Boxes ****/

/* Box for information */
.generic_container {
  position: relative;
  display: inline-block;
  background: white;
  border-radius: 10px;
  padding: 2rem 3rem;
  box-sizing: border-box;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 2.5rem;
  vertical-align: top;
}
.generic_container:not(:last-child) {
  margin-right: 2.5rem;
}
.generic_container h1 {
  margin-top: 0em !important;
}
.generic_container h3 {
  margin-top: 0.5em !important;
}

/* Tabs */
.tab_bar {
  display: flex;
  background-color: rgb(235, 235, 235);
  border-radius: 20px 20px 0px 0px;
}
.edit_tab {
  background-color: rgb(247, 247, 247);
  flex-grow: 1;
  border-radius: 10px 10px 0px 0px;
  box-shadow: inset 0 -2px 4px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.edit_tab_selected {
  box-shadow: none !important;
  background-color: white !important;
}
.edit_tab_selected_always {
  flex-grow: 1;
  border-radius: 10px 10px 0px 0px;
  box-shadow: none !important;
  background-color: white !important;
}
.pale_line_divider {
  width: 100%;
  height: 1px;
  background-color:  rgb(235, 235, 235);
}

/* Edit image canvas */
.scrollable_canvas {
  cursor: grab;
}
.scrollable_canvas:active {
  cursor: grabbing;
}
.edit_canvas {
  cursor: crosshair;
}
.edit_canvas:active {
  cursor: crosshair;
}

.canvas_container {
  position:relative;
  display:block;
  top:0;
  left:0;
  max-height: 80vh;
  max-width: 100%;
}
.selected_area {
  position:absolute;
  z-index:998;
}
.hidden_canvas_image {
  position:relative;
  width:auto;
  height:auto;
  display: none;
}
.edit_controls_container {
  background-color: black;
  max-width: 100px;
  padding: 5px;
  display: flex;
  flex-direction: column;
}
.edit_control_icon {
  position: relative;
  user-select: none;
}
.edit_controls {
  position: absolute;
  transform: translate(54px, -5px);
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.753);
  color: white;
  padding: 1.5rem;
  width: 275px;
  display: flex;
  justify-content: space-between;
}

/* Wireframe canvas */
.wireframe_pop_menu {
  position: absolute;
  transform: translate(54px, -55px);
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.753);
  color: white;
  display: flex;
  padding: 2px;
  justify-content: space-between;
}
/* .horizontal_controls {
}
.vertical_controls {
}
.bathroom_controls {
} */

/* Collapsible container */
.collapsible_container {
  position: relative;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
  background: white;
  padding-bottom: -1em;
  box-sizing: border-box;
  margin-right: 2.5em;
}
.generic_container.collapsible {
  padding-top: 1em;
  padding-bottom: 1em;
  margin: 0;
  margin-bottom: -.5em;
}
.generic_container.collapsible .collapsible_title {
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
  color: white !important;
}
.generic_container.collapsible .icon_container {
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.collapsible_container .collapsible_content {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding: .25em 3em;
  max-height: 150px;
  box-sizing: border-box;
  overflow-y: hidden;
}
.collapsible_container.show .generic_container.collapsible {
  margin-bottom: 0;
}
.collapsible_container.show .collapsible_content {
  height: 150px;
}

/* Container within container */
.sub_container {
  position: relative;
  display: block;
  width: 100%;
  font-size: .85em;
  margin-left: auto;
  margin-right: auto;
  padding: .5em;
  border-radius: .625rem;
  border: 1px solid rgba(184, 184, 184, .4);
}
.sub_container .title {
  position: relative;
  display: block;
  color: black;
  font-weight: bold;
  margin: .25em .5em;
}

/* Confirmation box */
.confirmation_box {
  position: fixed;
  top: 20px;
  right: 20px;
}
.confirmation_message {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  color: white;
  border-radius: 10px;
  padding: .5em 1em;
  margin-bottom: 1em;
}

/* Box tag */
.box_tag {
  position: absolute;
  top: 20px;
  right: 0px;
  background-color: orange;
  color: white;
  padding: 10px 15px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}


/**** Pagination ****/

/* Default paginator */
.pagination {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 15px;
}
.pagination a {
  display: inline-block;
  border-radius: 30px;
  width: 15px;
  height: 15px;
  line-height: 15px;
  color: white;
  padding: 5px;
  text-decoration: none;
  text-align: center;
}
.pagination > p {
  display: inline-block;
  margin: 0 20px;
}
.pagination > a > p {
  margin: 0;
  line-height: 15px;
}


/**** ToolTips  ****/
.tooltip_text {
  position: fixed;
  visibility: hidden;
  display: block;
  z-index: 999;
  width: 200px;
  padding: 10px;
  border-radius: 6px;
  opacity: 0.95;
  color: white;
  text-align: center;
}
.tooltip_trigger {
  display: inline-block;
  vertical-align: middle;
  height: 1em;
  width: 1em;
  line-height: 1em;
  text-align: center;
  font-size: 0.7em;
  border-radius: 30px;
  color: white;
  padding: 5px;
  vertical-align: middle;
}
.inline_tooltip_trigger {
  margin-left: 20px;
  border-radius: 30px;
  color: white;
  padding: 3px 10px;
  user-select: none;
}
.inline_tooltip_trigger:hover {
  cursor: pointer;
}
.inline_tooltip_target {
  display: inline-block;
}
.tooltip_explainer {
  padding: 10px;
  border: 2px solid rgb(0,162,232);
  background-color: rgba(0,162,232,0.3);
  border-radius: 30px;
  display: none;
}


/**** Lists ****/

/* Sortable List */
.sortable {
  list-style-type: armenian;
  padding: 0;
}
.sortable li {
  position: relative;
  display: inline-block;
  border-radius: 10px;
	margin-top: .5em;
	margin-right: .5em;
  padding: 1em 1.5em;
	border: 1px solid rgba(184, 184, 184, .4);
  cursor: move;
}

.sortable li.ui-sortable-placeholder {
  width: 20%;
  height: 2em;
}


/**** Overlays ****/

/* Scrollable overlay */
.scrollable_overlay {
  overflow: scroll;
}

/* Central overlay */
.central_overlay {
  position: absolute;
  z-index: 998;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/**** Blue button (rectangle) ****/

.blue_button_rectangle {
  border: none;
  overflow: hidden;
  cursor: pointer;
}
.blue_button_rectangle p {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
}
.blue_button_rectangle_text {
  border: none;
  color: white;
}
.blue_button_rectangle_text:focus {
  outline: none;
}
.blue_button_rectangle_text p {
  padding: 5px 10px;
  color: white;
  margin: 0px;
}
.blue_button_rectangle_text:hover {
  cursor: pointer;
}


/**** Copying text ****/

/* Text copy box */
.text_copy {
  overflow: hidden;
}
.text_copy p {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
  margin-right: 20px;
}
.text_copy_copy {
  border: none;
  color: white;
  margin-right: 20px;
}
.text_copy_copy:focus {
  outline: none;
}
.text_copy_copy p {
  padding: 5px 10px;
  color: white;
  margin: 0px;
}
.text_copy_copy:hover {
  cursor: pointer;
}


/**** Code ****/

/* Blocks of code */
.code_block {
  text-align: left;
  background-color: rgb(240, 240, 240);
  color: rgb(50, 50, 50);
  box-sizing: border-box;
  padding: 20px;
}


/**** Analytics ****/

/* Analytic box */
.analytic_boxes {
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}
.analytic_box, .large_analytic_box {
  display: inline-block;
  background-color: white;
  padding: 40px;
  margin: 20px;
  vertical-align: top;
  text-align: center;
  border-radius: 10px;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .analytic_box, .large_analytic_box {
    margin-left: 0;
  }
}
.analytic_box.centered,
.large_analytic_box.centered {
  display: block;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.large_analytic_box {
  width: 90%;
  height: 80%;
  box-sizing: border-box;
}
.analytic_box .left {
  width: 50%;
  box-sizing: border-box;
  float: left;
  padding-left: 2rem;
  padding-right: 2rem;
}
.analytic_box .right {
  float: right;
  width: 50%;
  box-sizing: border-box;
}
.analytic_box .full {
  width: 100%;
}
.analytic_box .right .text {
  margin-bottom: 25px;
}
.analytic_box h1 {
  margin-top: 0px !important;
}
.analytic_box .canvas,
.analytic_box .large_canvas,
.analytic_box .deep_canvas {
  margin: auto;
}
.analytic_box .canvas_chart {
  width: 350px;
  height: 350px;
}

@media only screen and (min-width: 776px) {
  .analytic_box .large_canvas {
    width: 500px;
    height: 500px;
  }
}
@media only screen and (max-width: 775px) and (min-width: 576px) {
  .analytic_box .large_canvas {
    width: 350px;
    height: 350px;
  }
}
@media only screen and (min-width: 576px) {
  .analytic_box {
    padding: 30px 40px;
  }
  .analytic_box .left .number {
    font-size: 5em;
  }
  .analytic_box .left .text {
    font-size: 2.3em;
  }
  .analytic_box .right .number {
    font-size: 2em;
  }
  .analytic_box .right .text {
    font-size: 1.5em;
  }
  .analytic_box .canvas {
    width: 350px;
    height: 350px;
  }
  .analytic_box .deep_canvas {
    width: 350px;
    height: 700px;
  }
}
@media only screen and (max-width: 575px) and (min-width: 426px) {
  .analytic_box {
    padding: 20px;
  }
  .analytic_box .left .number {
    margin-top: 15px;
    font-size: 3em;
  }
  .analytic_box .left .text {
    font-size: 2em;
  }
  .analytic_box .right .number {
    font-size: 1.5em;
  }
  .analytic_box .right .text {
    font-size: 1.1em;
  }
  .analytic_box .canvas, .analytic_box .large_canvas {
    width: 250px;
    height: 250px;
  }
  .analytic_box .deep_canvas {
    width: 250px;
    height: 500px;
  }
}
@media only screen and (max-width: 425px) {
  .analytic_box {
    padding: 20px;
  }
  .analytic_box .left .number {
    margin-top: 15px;
    font-size: 2em;
  }
  .analytic_box .left .text {
    font-size: 1.5em;
  }
  .analytic_box .right .number {
    font-size: 1.2em;
  }
  .analytic_box .right .text {
    font-size: 1em;
  }
  .analytic_box .canvas, .analytic_box .large_canvas {
    width: 200px;
    height: 200px;
  }
  .analytic_box .deep_canvas {
    width: 200px;
    height: 400px;
  }
}


/**** Forms ****/

/* Checkboxes */

.check_container {
  position: relative;
  display: inline-block;
  width: auto;
  padding-right: 2em;
  text-align: left;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 1em;
}

.check_container > input { display: none; }

.check_container:hover .checkbox {
  background-color: #054280;
}

.checkbox {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 1.5625em;
  height: 1.5625em;
  border: 2px solid black;
  border-radius: .1875em;
  padding: 0;
  margin: 0;
  margin-right: .5em;
}
.checkbox.round {
  border-radius: 50%;
}

.checkbox_input {
  opacity: 0;
  height: 0;
  width: 0;
}
.checkbox_text {
  display: inline-block;
  vertical-align: middle;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  margin: 0px;
}
.check_container .checkbox:after,
.custom_checkbox_container .custom_check_container:after {
  content: '';
  display: none;
  left: .5em;
  top: .125em;
  width: .3em;
  height: .75em;
  border: solid white;
  border-width: medium;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.custom_checkbox_container .custom_check_container:after {
  position: absolute;
  border-color: white;
  top: .2em;
  left: .5em;
}
.check_container:hover input ~ .checkbox,
.check_container input:checked ~ .checkbox {
  background-color: #054280;
}
.check_container input:checked ~ .checkbox:after,
.custom_checkbox_container input:checked ~ .custom_check_container:after {
  display: block;
}
.custom_checkbox_container {
  position: relative;
  display: block;
  width: 1.5em;
  height: 1.5em;
  border-radius: .5em;
  overflow: hidden;
  border: 1px solid #6d6d6d;
  z-index: 1;
}
.custom_checkbox_container .custom_check_container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: white;
}
.custom_checkbox_container input {
  display: none;
}


/****	Sub title	****/
.subtitle {
  position: relative;
  font-weight: bold;
  font-size: .9em;
  color: #6d6d6d;
}


/**** KPI item list ****/
.kpi_item_list {
  position: relative;
  display: inline-block;
  width: calc(100% / 3);
  vertical-align: top;
}
.kpi_item_list_chart {
  display: inline-block;
  width: calc(100% / 3);
}

.kpi_item_lists .list_title {
  text-align: right;
}

.kpi_item_last_month .list_title {
  color: #4a94db;
  text-align: left;
}
.kpi_item_last_month .row_title {
  display: none;
}
.kpi_item_last_month .list_title {
  padding-left: 30%;
}
.kpi_item_last_month .second_row {
  margin-left: 30%;
}

@media only screen and (max-width: 1200px) {
  .kpi_item_list {
    width: 50%;
    margin-bottom: 1rem;
  }
  .kpi_item_list_chart {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 1000px) {
  .kpi_item_list {
    display: block;
    width: 100%;
  }
  .kpi_item_last_month .row_title {
    display: inline-block;
  }
  .kpi_item_last_month .list_title {
    padding-left: 0;
  }
  .kpi_item_last_month .second_row {
    margin-left: 0;
  }
}


/**** View Counter  ****/
.view_count {
  position: absolute;
  right: 0;
  padding-left: .5em;
}
.view_count img {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}


/**** Virtual Tours ****/

/* SVG navigation */
.svg_navigation {
  width: 100%;
  box-sizing: border-box;
}
.svg_navigation svg {
  display: inline-block;
}
.svg_navigation_text {
  display: inline-block;
  text-align: left;
}
.svg_navigation_text p {
  display: inline-block;
  margin: 10px 0;
}
.svg_selectable_text:hover {
  font-weight: bold;
}
.svg_navigation_text a {
  text-decoration: none;
  color: black;
}
.svg_selected_navigation {
  font-weight: bold;
}
@media only screen and (min-width: 900px) {
  .svg_navigation svg {
    height: 30px;
    width: 480px;
  }
  .svg_navigation_text_small p {
    width: 120px;
  }
  .svg_navigation_text_5 p {
    width: 115px;
  }
  .svg_navigation {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 425px) and (max-width: 899px) {
  .svg_navigation svg {
    height: 20px;
    width: 320px;
  }
  .svg_navigation_text_small p {
    width: 80px;
    font-size: 0.8em;
  }
  .svg_navigation_text_5 p {
    width: 80px;
    font-size: 0.8em;
  }
  .svg_navigation {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 424px) {
  .svg_navigation svg {
    height: 16px;
    width: 255px;
  }
  .svg_navigation_5 svg {
    height: 12px;
    width: 250px;
  }
  .svg_navigation_text_small p {
    width: 64px;
    font-size: 0.7em;
  }
  .svg_navigation_text_5 p {
    width: 50px;
    font-size: 0.8em !important;
  }
  .svg_navigation_text {
    width: 260px;
    margin: auto;
  }
  .svg_navigation_text_5 {
    width: 100%;
    min-width: 260px;
  }
  .svg_navigation {
    margin-bottom: 20px;
  }
}


/**** Draggable buttons ****/

.draggable_button_selection div {
  width: 120px;
  margin: 10px;
  padding: 10px;
  box-sizing: border-box;
  display: inline-block;
  border: 2px dashed rgb(235, 235, 235);
  background-color: rgb(245, 245, 245);
  user-select: none;
}
.draggable_button_selection div:hover {
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .draggable_button .up, .draggable_button .down {
    display: none;
  }
}


/**** Payment Cards ****/
li.list_payment_card {
  padding: 1em 1em 0;
  margin: 1em;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
li.list_payment_card .custom_label {
  vertical-align: super;
}
li.list_payment_card .custom_checkbox_container {
  display: inline-block;
}
li.list_payment_card .card_details {
  padding-right: .5em;
}
li.list_payment_card .card_details > div {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
li.list_payment_card .card_details > div:last-child {
  margin-left: 2em;
}
li.list_payment_card .card_details h4 {
  margin-bottom: 0;
}
li.list_payment_card .card_details .colour_operations {
  margin-top: 0;
}


/**** Gallery images ****/

/* Normal container */
.gallery_order_container {
  display: block;
  margin-top: 30px;
  width: 80%;
  margin-left: 10%;
}
.gallery_order, .gallery_order_no_hover {
  display: block;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 20px;
  min-height: 170px;
}
.gallery_order:hover {
  border-radius: 20px;
  cursor: pointer;
}
.gallery_order > div, .gallery_order_no_hover > * {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.gallery_order_image {
  width: 50%;
}
.gallery_order_image, .gallery_order_numbered_image {
  box-sizing: border-box;
  position: relative;
  height: 100%;
  min-height: 160px;
}
.gallery_order_image img, .gallery_order_numbered_image img {
  max-width: 100%;
  max-height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  box-sizing: border-box;
  position: absolute;
  padding: 10px 20px;
}
.gallery_order_text {
  width: 50%;
}
.gallery_order_text p, .gallery_order_numbered_text p, .gallery_order_text_insides p {
  width: 100% !important;
  word-wrap: break-word;
  display: inline-block;
  box-sizing: border-box;
  margin: 5px 0px;
}
.gallery_order_text_insides {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.gallery_order_text_insides audio {
  max-width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .gallery_order_container {
    width: 90%;
    margin-left: 5%;
  }
  .gallery_order, .gallery_order_no_hover {
    min-height: 130px;
  }
  .gallery_order_image {
    width: 50%;
  }
  .gallery_order_image, .gallery_order_numbered_image {
    min-height: 120px;
  }
  .gallery_order_image img, .gallery_order_numbered_image img {
    padding: 10px;
  }
  .gallery_order_text {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .gallery_order_container {
    width: 90%;
    margin-left: 5%;
  }
  .gallery_order, .gallery_order_no_hover {
    min-height: 90px;
  }
  .gallery_order_image {
    width: 30%;
  }
  .gallery_order_image, .gallery_order_numbered_image {
    min-height: 80px;
  }
  .gallery_order_image img {
    padding: 5px;
  }
  .gallery_order_text {
    width: 65%;
  }
}

/* Numbering */
.gallery_order_number {
  position: relative;
  text-align: center;
  width: 10%;
}
.gallery_order_number p {
  margin: 0px;
}
.gallery_order_numbered_image {
  width: 43%;
}
.gallery_order_numbered_text {
  width: 43%;
}

/* Arrows */
.gallery_ordering_arrows p {
  display: inline-block;
	border-radius: 20px;
	line-height: 20px;
  margin: 10px;
  width: 20px !important;
	height: 20px;
	text-align: center;
	font-weight: bold;
  border: 2px solid black;
  box-sizing: content-box !important;
}
.gallery_ordering_arrows p:hover {
  cursor: pointer;
}

/* Multi line text */
.gallery_order_multi_text > * {
  display: inline-block;
  vertical-align: middle;
}

/* Extra images */
.gallery_order_text_icon {
  height: 1em;
  margin-right: 0.5em;
}

/* Fattening and slimming */
.gallery_order_fattening_text {
  padding: 10px 0px;
}
.full_gallery_order_container {
  width: 90%;
  margin-left: 5%;
}
.full_gallery_order_container .gallery_order_slimming_image {
  width: 40%;
}
.full_gallery_order_container .gallery_order_fattening_text {
  width: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .full_gallery_order_container {
    width: 95%;
    margin-left: 2.5%;
  }
  .full_gallery_order_container .gallery_order_slimming_image {
    width: 30%;
  }
  .full_gallery_order_container .gallery_order_fattening_text {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .full_gallery_order_container {
    width: 95%;
    margin-left: 2.5%;
  }
  .full_gallery_order_container .gallery_order_slimming_image {
    width: 25%;
  }
  .full_gallery_order_container .gallery_order_fattening_text {
    width: 65%;
  }
}


/**** Other Image Styles ****/

/* Put a cross in the top corner of the image */
.image_cross_overlay {
  position: absolute;
  background-color: #054280;
  line-height: 20px;
  width: 20px;
  height: 20px;
  color: white;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 1px 0 #fff;
  top: 0px;
  right: 0px;
  cursor: pointer;
}


/**** Training Page Thumbnails  ****/
.training_thumb {
  width: 350px;
  height: 300px;
  vertical-align: top;
  box-sizing: border-box;
}


/**** Progress Bars  ****/
.progress_bar_container {
  overflow: hidden;
  text-align: center;
}
.progress_bar {
  border-radius: 30px;
  border: 2px solid black;
  overflow: hidden;
}
.progress_bar p {
  text-align: center;
  color: white;
  margin: 0px;
}
.progress_bar .progress {
  background-color: #054280;
}

/**** Custom Class for table tooltip  ****/
.table_tooltip_first td:first-child {
  white-space: normal;
}
.table_last_padding0 td:last-child {
  padding-right: 0 !important;
}

/* Floating window */
.floating_bottom_bar {
  width: 100%;
  padding: 10px 20px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  background-color: #007EA7;
  color: white;
  z-index: 998;
}
.floating_bottom_bar a {
  color: white;
  text-decoration: underline;
}
.floating_bottom_bar_gap {
  height: 60px;
  display: block;
}

/* Round button (not round anymore */
@media only screen and (max-width: 768px) and (min-width: 426px) {
  .big_round_button {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 425px) {
  .big_round_button {
    font-size: 1em;
  }
}
.big_round_button {
  display: inline-block;
  padding: 10px 20px;
  border: 0px;
  margin: 10px 20px;
}

/* Yellow Button */
.yellow_button {
  color: black;
}
.yellow_button a {
  color: black;
}
.yellow_button {
  background-color: #FFC70C;
}

/* Custom Icons   */
.user_initials {
	position: relative;
	display: block;
	width: 2.5em;
	height: 2.5em;
	line-height: 2.5em;
	background-color: white;
	border-radius: 50%;
	font-weight: normal;
	font-size: 1.25em;
}

.mini_user_initials {
	position: relative;
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	line-height: 1.75rem;
	border-radius: 50%;
	font-weight: normal;
	font-size: .8rem;
	text-align: center;
}

.icon {
  position: relative;
  display: block;
  width: 1em;
  height: 1em;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
.icon .ico {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 1em;
  max-width: 1em;
  height: .1em;
  max-height: .1em;
  background: currentColor;
  -webkit-font-smoothing: antialiased;
  transform: translate(-50%, -50%);
}
.icon .ico:after,
.icon .ico:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 90%;
  background: inherit;
}

.icon .ico,
.icon .ico:after,
.icon .ico:before {
    transition: 500ms cubic-bezier(.4, 0, .2, 1);
	-o-transition: 500ms cubic-bezier(.4, 0, .2, 1);
	-ms-transition: 500ms cubic-bezier(.4, 0, .2, 1);
	-moz-transition: 500ms cubic-bezier(.4, 0, .2, 1);
	-webkit-transition: 500ms cubic-bezier(.4, 0, .2, 1);
}

/* Menu Icons */
.ico.beehive,
.ico.hamburger,
.ico.hamburger-alt,
.ico.hamburger-alt-reverse,
.ico.beehive:after,
.ico.hamburger:after,
.ico.hamburger-alt:after,
.ico.hamburger-alt-reverse:after,
.ico.beehive:before,
.ico.hamburger:before,
.ico.hamburger-alt:before,
.ico.hamburger-alt-reverse:before {
  width: 1em;
  height: 100%;
}
.ico.beehive:after,
.ico.hamburger:after,
.ico.hamburger-alt:after,
.ico.hamburger-alt-reverse:after {
  top: -.35em;
  left: 0;
}
.ico.beehive:before,
.ico.hamburger:before,
.ico.hamburger-alt:before,
.ico.hamburger-alt-reverse:before {
  top: auto;
  bottom: -.35em;
  left: 0;
}
.ico.beehive:after,
.ico.hamburger-alt:after,
.ico.hamburger-alt-reverse:after,
.ico.beehive:before,
.ico.hamburger-alt:before,
.ico.hamburger-alt-reverse:before {
  width: 50%;
}
.ico.hamburger-alt:before,
.ico.hamburger-alt-reverse:after,
.ico.beehive:after,
.ico.beehive:before {
  left: 50%;
}
.ico.beehive:after,
.ico.beehive:before {
  transform: translateX(-50%);
}

/* Chevrons   */
.ico.chevron {
  top: calc(50% + .125em);
  left: 50%;
  width: .1em;
  transform: translate(-50%, -50%);
}
.ico.chevron:after,
.ico.chevron:before {
  top: calc(50% + .05em);
  right: 25%;
  width: .5em;
  transform-origin: right;
  transform: translateY(-50%) rotate(35deg);
}
.ico.chevron:before {
  right: auto;
  left: 25%;
  transform-origin: left;
  transform: translateY(-50%) rotate(-35deg);
}

.ico.chevron.up {
  top: calc(50% - .125em);
  transform: translate(-50%, -50%) rotate(180deg);
}

.ico.chevron.left {
  top: 50%;
  left: calc(50% - .125em);
  transform: translate(-50%, -50%) rotate(90deg);
}
.ico.chevron.right {
  top: 50%;
  left: calc(50% + .135em);
  transform: translate(-50%, -50%) rotate(-90deg);
}

/* Arrows */
.ico.arrow:not(.left, .right) {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.ico.arrow:after,
.ico.arrow:before {
  width: 35%;
  left: -.03em;
  top: .03em;
  transform-origin: left;
  transform: rotate(-45deg);
}
.ico.arrow:before {
  top: auto;
  bottom: .03em;
  transform: rotate(45deg);
}
.ico.arrow.up:after,
.ico.arrow.up:before,
.ico.arrow.right:after,
.ico.arrow.right:before {
  width: 35%;
  left: auto;
  right: -.03em;
  top: .03em;
  transform-origin: right;
  transform: rotate(45deg);
}
.ico.arrow.up:before,
.ico.arrow.right:before {
  top: auto;
  bottom: .03em;
  transform: rotate(-45deg);
}

.ico.close {
  width: 100%;
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}
.ico.close:after,
.ico.close:before {
  transform-origin: right;
  top: 0;
  left: 0;
  width: 50%;
  transform: rotate(90deg);
}
.ico.close:before {
  top: auto;
  bottom: 0;
  left: 50%;
  transform-origin: left;
}


/* Navigaion  */
.sidebar {
	width: 200px;
	height: 100%;
	z-index: 980;
}
.sidebar a {
	color: white;
}

.sidebar > li {
	position: relative;
	display: block;
}

.sidebar ul {
	position: relative;
	display: block;
	list-style: none;
}
.sidebar > li.menu-btn {
	position: absolute;
	display: none;
	width: 40px;
	height: 40px;
	top: 0;
	right: 0;
	line-height: 50px;
	text-align: center;
}
.sidebar > li.menu-btn a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.sidebar > li.logo {
	width: 100%;
	margin-top: 0;
	height: 150px;
	text-align: center;
	box-sizing: border-box;
}
.sidebar > li.logo a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.sidebar > ul {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	line-height: 2rem;
	text-align: left;
	width: 100%;
	height: calc(100% - 220px);
}
.sidebar > ul:not(.account) {
	overflow-x: hidden;
}

.sidebar > ul > li {
	position: relative;
	display: block;
	margin: .25rem 0;
	font-size: 1rem !important;
}
.sidebar > ul  li a {
	display: block;
	padding-left: 2rem;
	white-space: nowrap;
}
.sidebar > ul > li:first-child {
	margin: 0;
}
.sidebar > ul > li {
	font-weight: bold;
}

.dropdown {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 40px;
	color: currentColor;
}
.dropdown.closed {
	transform: translateY(-50%) rotate(-90deg);
}
.page_bar_menu:hover > .hoverable_dropdown,
.hoverable_dropdown:hover {
	transform: translateY(-50%) rotate(0deg);
}

.sidebar > ul > li > ul {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding: 0;
	font-weight: normal;
}
.sidebar > ul > li > ul.show {
	height: auto;
}
.sidebar > ul > li > ul > li {
	padding: 0 !important;
	font-size: 1em !important;
}
.sidebar > ul > li > ul > li > a {
	padding-left: 3rem;
}
/*	Account UL	*/
.sidebar .account {
	position: absolute;
	display: block;
	bottom: 0;
	width: 100%;
	height: 70px;
	text-align: center;
	white-space: nowrap;
}
.sidebar .account > li {
	position: relative;
	color: white;
	display: inline-block;
	width: 50px;
	margin: 0 10px;
	height: 50px;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	padding: 0;
}
.sidebar .account .popup-menu {
	position: absolute;
	left: -50rem;
	bottom: 0;
	width: auto;
	height: auto;
	background: white;
	border-radius: 8px;
	box-shadow: 0 0 5px 1px black;
	color: black;
	padding: 1rem;
	text-align: left;
}
.sidebar .account .show .popup-menu {
	left: calc(100% + 1rem);
}
.sidebar .account .popup-menu ul {
	padding: 0;
}
.sidebar .account .popup-menu ul:last-child {
	margin-top: 1rem;
}
.sidebar .account .popup-menu ul:last-child li:last-child a {
	margin-left: 3rem;
	padding-left: 0;
}
.sidebar .account li .popup-menu li {
	font-weight: 400;
	font-size: 1rem;
	line-height: normal;
	position: relative;
}
.sidebar .account .popup-menu li .icon {
	width: 20px !important;
	max-height: 20px !important;
	left: 0;
	transform: translateY(-50%);
}
.sidebar .account .popup-menu li .icon,
.sidebar .account .popup-menu li .icon:after,
.sidebar .account .popup-menu li .icon:before {
	border-width: 1px;
}
.sidebar .account .popup-menu li .icon.none,
.sidebar .account .popup-menu li .icon.none:after,
.sidebar .account .popup-menu li .icon.none:before {
	border: 0;
}

.sidebar .account .popup-menu li a {
	font-size: .9rem;
	color: black;
}
.sidebar .account .popup-menu li a:hover {
	background: none;
}
.sidebar .account li .popup-menu .popup-navigation li .text {
	line-height: 2em;
}
.sidebar .account li .popup-menu .popup-navigation-bottom li {
	display: inline-block;
}
.sidebar .account li .popup-menu .popup-navigation li .inline_image {
	position: absolute;
	display: block;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	max-height: 1.5em;
	margin-right: 1rem;
}


.sidebar .account .popup-menu .popup-navigation-bottom .logo {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	max-width: 30px;
	max-height: 30px;
}

/*	Page Content	*/
.action_bar {
	position: relative;
	display: block;
	width: 100%;
	line-height: 2.5rem;
	padding-left: 75px;
}
.action_bar .action {
	position: relative;
	display: inline-block;
	margin-right: 1rem;
	font-weight: 600;
	cursor: pointer;
}
.page_content {
	position: relative;
	display: block;
	width: 100%;
	color: #6D6D6D;
	padding-left: 75px;
	padding-right: 75px;
	text-align: center;
	box-sizing: border-box;
}
.page_section {
	border: 1px solid #B8B8B8;
	border-radius: 10px;
	margin-top: 2rem;
	margin-left: auto;
	margin-right: auto;
	background: white;
	padding: 20px 30px;
	box-sizing: border-box;
}
.left .page_section {
	margin-left: unset;
	margin-right: unset;
}
.page_section:last-child {
	margin-bottom: 2rem;
}
.page_section.form {
	width: 100%;
	max-width: 1000px;
	text-align: left;
}
.page_section.form.medium {
	max-width: 750px;
}
.page_section.form h1 {
	text-align: left;
}
.page_section .operations_belt {
	width: auto;
	padding-left: 0;
	background: none;
}
.left h1 {
	text-align: left;
}
.sidebar_page h1 {
	text-transform: none;
	margin-top: 2rem;
}
.sidebar_page h3 {
	text-transform: none;
	margin-top: 2rem;
}
.page_content > p {
	margin-bottom: 2.5rem;
}
.page_results {
	position: relative;
	display: table-cell;
	max-width: 100%;
	margin-top: 2rem;
}

/* Navigation */
@media only screen and (max-width: 768px) {
	.sidebar {
		width: 40px;
	}
	.navigation_show .sidebar {
		width: 200px;
	}
	.sidebar > li.menu-btn {
		display: block;
	}
	.sidebar > li.logo {
		display: none;
	}
	.navigation_show .sidebar > li.logo {
		padding: 52px 20px;
		margin-top: 0;
		height: 150px;
    display: block !important;
	}
	.sidebar > ul,
	.sidebar ul.account {
		width: 0;
		overflow-x: hidden;
	}
	.navigation_show .sidebar > ul {
		width: 100%;
	}
	.navigation_show .sidebar > ul.account {
		overflow-x: unset;
	}
}


/**** Navigation arrows ****/
.left_navigation_arrow {
  position: absolute;
  left: 10px;
  width: 0px;
  height: 0px;
  top: 50%;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
}
.right_navigation_arrow {
  position: absolute;
  right: 10px;
  width: 0px;
  height: 0px;
  top: 50%;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
}


/**** Training Tooltips ****/

/* The title */
.title_tooltip {
  position: absolute;
  display: block;
  top: calc(50% - 10px);
  right: -10px;
  font-size: 1.5rem;
  width: 20px;
  height: 20px;
  z-index: 1;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .title_tooltip {
    right: 30px;
  }
}
.title_tooltip:after {
  content: '?';
  position: absolute;
  display: block;
  top: 0px;
  left: 100%;
  width: 1.5em;
  line-height: 1.5em;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  color: white;
}
.title_tooltip .tooltip_content {
  position: absolute;
  display: block;
  top: -1.125em;
  right: -3em;
  padding: 1em;
  padding-right: 5em;
  min-width: 400px;
  width: auto;
  white-space: nowrap;
  box-sizing: border-box;
  font-size: 1rem;
  background: white;
  border-radius: 10px;
  border-top-right-radius: 1em;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  overflow: hidden;
  transform: scale(0);
  transform-origin: top right;
}
.title_tooltip:hover .tooltip_content {
  transform: scale(1);
}
@media only screen and (max-width: 475px) {
  .title_tooltip .tooltip_content {
    min-width: 300px;
    max-width: 100%;
  }
}

/* Training lists */
.title_tooltip .tooltip_content .tour_training_list li {
  display: block;
  line-height: 1.9rem;
}
.title_tooltip .tooltip_content .tour_training_list li .counter {
  width: 1.75em;
  height: 1.75em;
  line-height: 1.75em;
}

/* Training image */
.completed_training_image {
  position: relative;
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}


/* Tour training list */
.tour_training_list {
  position: relative;
  display: inline-block;
  list-style: none;
  box-sizing: border-box;
  padding: 0;
  width: calc(100% - 335px);
}
.close_training_button {
  vertical-align: top;
  margin-top: 1.3em;
}
.tour_training_list li {
  position: relative;
  display: inline-block;
  width: calc(50% - 4em);
  box-sizing: border-box;
  margin-left: 3em;
  line-height: 3.5em;
  white-space: nowrap;
}
@media only screen and (max-width: 1475px) {
  .collapsible_container .collapsible_content {
    max-height: 275px;
  }
  .collapsible_container.show .collapsible_content {
    height: 275px;
  }
  .close_training_button {
    margin-top: 0;
  }
  .tour_training_list,
  .tour_training_list li {
    display: block;
    width: 100%;
  }
}
.tour_training_list li .counter {
  position: absolute;
  top: 50%;
  left: -3em;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  transform: translateY(-50%);
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}
.tour_training_list li .counter, .tour_training_list li .option_text {
  color: white;
}
.tour_training_list li[data-completed="1"] .counter,
.tour_training_list li[data-completed="1"] .option_text {
  color: #6d6d6d;
}
.tour_training_list li[data-completed="1"] .option_text {
  text-decoration: line-through;
}
.tour_training_list li .counter .number {
  position: relative;
  display: block;
  margin-top: 0;
  font-weight: bold;
}
.tour_training_list li:not([data-completed="1"]) .counter:hover .number {
  margin-top: -1.75em;
}

/* Training Items */
.training_item {
  position: relative;
  display: inline;
  z-index: 1;
}
.training_item > a {
  margin-right: .5em;
}
.page_bar .training_item > a {
  margin-right: 2rem;
}
.training_box {
  position: absolute;
  top: 50%;
  left: 100%;
  white-space: nowrap;
  color: black;
  padding: .2em;
  font-size: .8em;
  font-weight: bold;
  border-radius: 1rem;
  border-top-left-radius: 0;
  overflow: hidden;
  z-index: 999;
}
.training_box:after {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300%;
  height: 600%;
  background-size: 100% 100%;
  animation: gradient_animation 2s linear infinite;
}
.training_content {
  position: relative;
  background: white;
  padding: 1em;
  border-radius: .8rem;
  border-top-left-radius: 0;
  z-index: 1;
}
.training_content .next_button {
  position: relative;
  font-weight: bold;
  cursor: pointer;
  width: auto;
}
.training_content .next_icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background: #c3daf2;
  border-radius: 50%;
  padding: .25em;
}


/**** Tilt Arrows ****/

.tilt_arrows {
  position: relative;
}
.tilt_up {
  display: block;
  margin-bottom: -20px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
.tilt_down {
  display: block;
  margin-top: -20px;
  margin-left: auto;
  margin-right: auto;
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  cursor: pointer;
}
.tilt_left {
  display: inline-block;
  margin-right: 25px;
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  cursor: pointer;
  filter: brightness(0) saturate(100%) invert(23%) sepia(93%) saturate(2272%) hue-rotate(196deg) brightness(93%) contrast(107%);
}
.tilt_right {
  display: inline-block;
  margin-left: 25px;
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  cursor: pointer;
  filter: brightness(0) saturate(100%) invert(23%) sepia(93%) saturate(2272%) hue-rotate(196deg) brightness(93%) contrast(107%);
}


/**** Training page styles ****/

.training_page_container { 
  overflow-y: scroll;
  padding: 20px 20px 80px;
  box-sizing: border-box;
}
.training_page_container > h2 {
  margin: auto;
  max-width: 800px;
}
.training_page_body {
  margin: auto;
  max-width: 800px;
}