:root {
	
	--red: #B71234;
	--dark: #181F24;
	--bg-grey: #F9F9F9;
	--red-1: #B71234;
	--red-2: #D0394E;
	--red-3: #D5525A;
	--red-4: #DB686A;
	--red-5: #DE7B78;
	--red-6: #E18D89;
	--red-7: #E7A19C;
	--red-8: #EBB6B0;
	--red-9: #F1CDC7;
	--red-10: #FAE4DF;

  --lt-text: #8E908F;
  --medium-text: #6E6E6E;
}

.page-content, .entry-content, .entry-summary , .page {
	    margin: 0;
}

body {
	font-family: 'Overpass', sans-serif;
	color: #000;
	    margin: 0;
}

h1, h2, h3, h4, h5, h6, p, li {
	font-family: 'Overpass', sans-serif;
}

h2 {
	font-weight: bold;
}

p {
	margin-bottom: 1.25em;
}


.mb-0,
.columns:not(:last-child).mb-0 {
	margin-bottom: 0;
}
.mb-xs,
.columns:not(:last-child).mb-xs {
	margin-bottom: 0.5rem;
}
.mb-sm,
.columns:not(:last-child).mb-sm {
	margin-bottom: 0.75rem;
}
.mb-md,
.columns:not(:last-child).mb-md {
	margin-bottom: 1.25rem;
}
.mb-lg,
.columns:not(:last-child).mb-lg {
	margin-bottom: 1.75rem;
}
.mb-xl,
.columns:not(:last-child).mb-xl {
	margin-bottom: 2rem;
}


/* Button styles */
.btn,
input.button,
input[type="submit"],
input[type="reset"],
button,
.button,
.view-more .btn,
.load-more .btn {
    display: inline-block;
    /* border-radius: 0.25rem; */
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
	  background-color:var(--red);
    color: #fff;
	border:1px solid var(--red);
}

.button-primary {
    background-color:var(--red);
    color: #fff;
	border:1px solid var(--red);
}

.button-primary-reverse {
    background-color: transparent;
    color: var(--primary);
	border:1px solid var(--red);
}


button:hover,
.button:hover, .button:focus,
 .btn:hover,  .btn:focus {
    background-color: var(--dark);
	border:1px solid var(--dark);
    color: #fff;
    text-decoration: none;
}
.button-primary-reverse:hover {
    background-color:var(--red);
    color: #fff;
	border:1px solid var(--red);
}



label {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
	margin-bottom:0.5em;
	display: inline-block;
	line-height: 1.15em;
}

.inline-label {
	color: var(--text-grey);
	font-weight: bold;
}

.inline > label {
	margin-bottom:0;
}

input:focus {
	outline-color: var(--blue):
}

input[type="text"], input[type="email"], input[type="password"], input[type="url"], 
input[type="datetime-local"], input[type="datetime"], textarea, select {
  border: 1px solid rgba(0,0,0,0.1);
  /* background-color: var( --bg-grey); */
  padding: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  border-radius: 0;
}
input[type="radio"],
input[type="checkbox"] {
  width: 1.5em;
  height: 1.5rem;
  accent-color: var(--blue);
}
input[type="radio"] + label,
input[type="checkbox"] + label {
	font-weight: normal;
	margin-bottom:0;
}

input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}
input[type="file"]::before {
  content: 'Upload';
  display: inline-block;
  background: white;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius:   0.25rem;
  padding: 9px 20px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: none;
  font-weight: 700;
  font-size: 1rem;
}
input[type="file"]:hover::before,
input[type="file"]:active::before  {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}



.select2-selection__rendered, .select2-selection.select2-selection--single, 
.select2 .select2-selection__arrow {
	height: 42px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 40px;
}
.select2-container--default .select2-selection--multiple {
	  border: 1px solid rgba(0,0,0,0.1);
}
.select2-container, 
.select2-container--default .select2-selection--multiple {
	background-color: #ddd;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #ddd;
    border: 1px solid #777;
	color: #333
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border-right: 0;
	color:var(--blue);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
	background-color: transparent;
}

.switch {
  position: relative;
  display: inline-block;
width: 40px;
    height: 23px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-toggle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.switch-toggle:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .switch-toggle {
  background-color: var(--red);
}

input:focus + .switch-toggle {
  box-shadow: 0 0 1px var(--red);
}

input:checked + .switch-toggle:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}


 
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

table th, table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid var( --bg-grey);
}

table th {
  font-weight: bold;
  text-align: left;
  background-color: var(--dark);
  color: #fff;
}

table td {
  background-color: #fff;
}

table tr:nth-child(even) td {
  background-color: var(--bg-grey);
}

table th:first-child,
table td:first-child {
 /* padding-left: 0;*/
}

table th:last-child,
table td:last-child {
  /*padding-right: 0;*/
}

@media (max-width: 575.98px) {
  table {
    font-size: 0.875rem;
  }
}
/**** Home ****/
.home-hero-accordion {
	height: 100vh;
	display:flex;
	z-index: 9998;
	position:relative;
	max-width: 75vw;
	width: 900px;
	justify-content: end;
}



.home-hero-accordion-tools{
  position: absolute;
  float: right;
  margin: 20px 400px 0px 0px;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: row;
}
.home-hero-accordion-tools-search{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
} 
.home-hero-accordion-tools-search-img{
  height: 30px !important;
  cursor: pointer !important; 
}
.home-hero-accordion-tools-search-input{
  display: none;
  border-radius: 0 !important;
  padding: 5px 5px 5px 5px !important;
  border: 0px !important;
  height: 30px !important;
  border-bottom: solid 1px #797979 !important;
  color: #797979 !important;
  margin-left: 5px;
  background: transparent;
  /* width: 160px; */  
}
.home-hero-accordion-tools-search-input:focus{
  outline: none !important;
}
.home-hero-accordion-tools-lang{
  margin-left: 40px;
}
.home-hero-accordion-tools-lang-lnk{
  display: flex;
  flex-direction: row;
}
.home-hero-accordion-tools-lang-lnk img{
  margin-right: 8px;
  height: 30px;
}
.home-hero-accordion-tools-lang-lnk span{
  padding-top: 5px;
}
.home-hero-accordion-tools-lang-content{
  display: none;
  position: absolute;
  margin-left: -90px;
  margin-top: 7px;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  background-color: #ffffff;
}
.home-hero-accordion-tools-lang-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  color: #797979;
  border-bottom: solid 1px #FFFFFF00;
}

.home-hero-accordion .accordion-item {
	display:flex;
}
.home-hero-accordion .accordion-title {
	cursor: pointer;
	padding: 15px 20px;
	font-size: 1.15rem;
	font-weight: 600;
	color: #fff;
	position:relative;
	border-bottom:0;
	height: 100%;
	width: 75px;
}
.home-hero-accordion  .menu-accordion-item  .accordion-title  {
	width: 125px;
}
.home-hero-accordion .accordion-item:nth-child(1)   {
	background-color: var(--red-7);
}
.home-hero-accordion .accordion-item:nth-child(2) {
	background-color: var(--red-5);
}
.home-hero-accordion .accordion-item:nth-child(3) {
	background-color: var(--red-3);
}
.home-hero-accordion .accordion-item:nth-child(4)  {
	background-color: var(--red-1);
}
.home-hero-accordion .accordion-title > .vertical-title {
    position: absolute;
    width: auto;
    transform: rotate(-90deg);
    right: 0;
    left: 0;
    bottom: 110px;
    transform-origin: center;
    height: 30px;
    white-space: nowrap;
    font-size: 24px;
    font-style: bold;
    line-height: 24px;
}
.home-hero-accordion .accordion-title.open {
	display:none;
}
.home-hero-accordion .accordion-content img.close-accordion {
	position:absolute;
	bottom: 30px;
	left: auto;
	cursor: pointer;
  height: 22px;
  rotate: 180deg;
}
.home-hero-accordion .menu-accordion-item .accordion-title > img,
.home-hero-accordion .menu-accordion-item .accordion-content > img  {
    position: absolute;
    z-index: 10;
    top: 30px;
    width: 30px;
    height: 15px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    cursor: pointer;
}
.home-hero-accordion .accordion-content:not(.open) img.close-accordion,
.home-hero-accordion .menu-accordion-item .accordion-content:not(.open) > img.close-menu,
.home-hero-accordion .menu-accordion-item .accordion-title.open > img.open-menu {
	display:none;
}
.home-hero-accordion .menu-accordion-item .accordion-content.open > img.close-menu {
    left: auto;
    right: 55px;
    top: 30px;
    width: 30px;
    bottom: auto;
    height: 15px;

}
.home-hero-accordion .accordion-content {
	padding: 0;
	transition: all 0.5s;
	width: 0;
	overflow: hidden;
	align-items: center;
	display: flex;
}


.home-hero-accordion .accordion-content.open {
	max-width: 75vw;
	width: 500px;
	padding: 30px;
}

.home-hero-accordion .menu-accordion-item .accordion-content {
	background-color: var(--red-1);
	
}
.home-hero-accordion .menu-accordion-item .accordion-content.open {
	padding-top: 60px;
	/*transform: translateX(-120px);*/
	transition: all 0.5s;
	width: 700px;
}

.home-hero-accordion .accordion-content > .inner {
	width: 100%;
	opacity: 0;
	transition: all 0.5s;
}
.home-hero-accordion .accordion-content.open > .inner {
	opacity: 1;
	transition-delay: 0.5s;
}
.home-hero-accordion .accordion-icon{
  background-image: url(/wp-content/themes/sccl/images/arrow-left-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: auto;
  width: 22px;
  height: 22px;
}
.accordion-icon{
  opacity: 0;
}

.accordion-icon:hover{
  opacity: 1;
  transition: .5s ease;
}

.accordion-icon-close {
  background-image: url(/wp-content/themes/sccl/images/arrow-left-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin: auto;
  width: 22px;
  height: 22px;
  transform: rotate(180deg);
}
.home-hero-accordion .accordion-title.open .accordion-icon {
  transform: scale(-1);
  display:none;
}

.icon-test{
  background-image: url(/wp-content/themes/sccl/images/defend-quality.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin: auto;
    width: 22px;
    height: 22px;
    padding: 10px;
}



