/* FONT */
@import url("https://fonts.googleapis.com/css?family=Lato");
@import url("https://fonts.googleapis.com/css?family=Jersey");

/* */

/* ONGOING: For better UX, finding solution to have styling on selected tabs*/

/* General */
body {
  width: 99%;
  margin: 1px auto;
  background-color: #ecf0f1;
  font-family: Lato, sans-serif;
  letter-spacing: 1px;
}

*, *:hover {
  transition: all 0.3s;
}

/* Main Tabs */
label {
  background-color: #FF0000;
  color: #ffffff;
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  font-family: Jersey, sans-serif;
  font-weight: bold;
  font-size: 14px;
}

label:hover {
  background-color: #2e536e;
}

/* Just to give indication that it's being clicked */
label:active {
  color: #dce775;
}

.tab-radio {
  display: none;
}

/* Tabs behaviour, hidden if not checked/clicked */
.sub-tab-content,
.tab-content {
  display: none;
}

.tab-radio:checked + .tab-content,
.tab-radio:checked + .sub-tab-content {
  display: block;
}

/* Sub-tabs */
.sub-tabs-container label {
  color: #030700;
  min-width: 150px;
  text-align: center;
  background-color: #ff8a65;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
}

.sub-tabs-container label:active {
  color: #37474f;
  box-shadow: 2px 1px 1px rgba(0, 0, 0, 0.3);
}

.sub-tabs-container label:first-child {
  background-color: #cddc39;
}

.sub-tabs-container label:hover {
  background-color: #ffccbc;
}

.sub-tabs-container label:first-child:hover {
  background-color: #e6ee9c;
}

/* Tabs Content */
.tab-content {
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 2px 10px 6px -3px rgba(0, 0, 0, 0.5);
}

/* 1 Tab Space */
.tab-space {
            display: inline-block;
            margin-left: 40px;
        }
        
.heading-image-space-between1 {
            display: inline-block;
            margin-left: 20px;
        }
        
.heading-image-space-between2 {
            display: inline-block;
            margin-left: 30px;
        }

/* Class for color Orange */
.class-color-orange {background-color: #ff9800;}

 /* Video */
 
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
  font-size: 14px;
}


.overlay-content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 0%;
}

/* div paralell */
.flex { display: flex; }
.mr { margin-right: 1em; }
		
		
/* Social media label */
.wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
    font-size: .65em;
    margin-left: .5em;
    margin-right: .5em;
}