@charset "utf-8";
/*
Theme Name: MrTheme
Description: Custom Wordpress Theme
Author: Miguel J. Romero
Version: 1.1
*Required: mtheme.variables.css
*/

/*-------------------------------------------- GENERAL STYLE RESET ------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  text-rendering: optimizelegibility;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  font-size: 16px;
  font-display: swap;
  text-align: left;
  word-spacing: 0px;
  letter-spacing: 0px;
  line-height: 1.42857143;
  color: var(--DarkColor);
  background-color: var(--LightColor);
}

.iframe,
iframe {
  text-align: center;
}

/*------- Fonts -------*/
body {
  font-family: 'Asap', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Asap', sans-serif;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small {
  font-family: 'Asap', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  font-weight: normal;
  letter-spacing: 0px;
  margin-bottom: 10px;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h1 small,
h2 small,
h3 small {
  font-weight: bold;
  letter-spacing: -0.5px;
  display: block;
  clear: both;
}

h1 small {
  font-size: 32px;
}

h2 small {
  font-size: 24px;
}

h3 small {
  font-size: 22px;
}

p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: var(--BasicMargin);
}

strong,
b {
  font-weight: bold;
}

i {
  font-style: italic;
}

small {
  font-size: 60%;
}

/*------- Links & inputs -------*/
a {
  text-decoration: none;
  font-weight: bold;
  color: var(--BrandColor);
}

a:hover {
  color: var(--SecondaryColor);
  -webkit-transition: .3s ease-out;
  -moz-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
}

a:focus {
  outline: 0;
}

a,
a img,
a[href],
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="time"],
input[type="date"],
input[type="button"],
input[type="submit"],
input[type="image"],
input[type="radio"],
input[type="checkbox"],
input[type="file"],
input[type="search"],
label[for],
select,
.select-box,
button {
  cursor: pointer;
  -webkit-transition: .2s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  transition: .2s ease-in;
}

input,
button,
select,
textarea,
.textarea,
.select-box {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 10px;
}

input,
button,
select,
textarea,
.textarea,
.select-box {
  font-weight: 600;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="time"],
input[type="date"],
input[type="file"],
input[type="search"],
textarea,
.textarea,
select,
.select-box {
  width: 100%;
  border-radius: 5px;
  background: #f9fbfb;
  border: 1px solid var(--SecondaryColor);
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="tel"]:hover,
input[type="time"]:hover,
input[type="date"]:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="image"]:hover,
input[type="radio"]:hover,
input[type="checkbox"]:hover,
input[type="file"]:hover,
input[type="search"]:hover,
select:hover,
.select-box:hover,
button:hover {
  box-shadow: 0 0 10px 3px rgba(var(--LightColorRGB), .25);
}

input[type="file"] {
  color: var(--MediumDarkColor);
}

legend {
  display: inline-block;
}

*::-webkit-input-placeholder {
  color: var(--MediumColor);
  font-size: 14px;
  font-style: italic;
}

*:-moz-placeholder {
  color: var(--MediumColor);
  opacity: 1;
  font-size: 14px;
  font-style: italic;
}

*::-moz-placeholder {
  color: var(--MediumColor);
  opacity: 1;
  font-size: 14px;
  font-style: italic;
}

*:-ms-input-placeholder {
  color: var(--MediumColor);
  font-size: 14px;
  font-style: italic;
}

*::-ms-input-placeholder {
  color: var(--MediumColor);
  font-size: 14px;
  font-style: italic;
}

*::placeholder {
  color: var(--MediumColor);
  font-size: 14px;
  font-style: italic;
}

/*------- List -------*/
ul,
ol {
  list-style: none;
}

ol {
  padding-left: var(--BasicPadding);
  list-style: decimal;
}

ul li,
ol li {
  margin-bottom: var(--BasicMargin);
}

/*------- Inline -------*/
.ul-inline {
  padding: 0;
  margin: 0;
}

.ul-inline li {
  display: inline-block;
  margin-bottom: 0px;
}

.ul-inline-right li {
  margin-right: 10px;
}

/*------------------------------------------- BASIC CONTENTS FORMATS -----------------------------------------------------*/
article,
footer,
header,
nav,
section {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  clear: both;
  position: relative;
}

aside,
figcaption,
figure,
hgroup,
menu,
nav {
  display: block;
}

/*------- Basic Contents -------*/
.box-content-full {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  clear: both;
  margin: 0 auto;
  padding: 0;
}

.box-content {
  width: 100%;
  max-width: 1280px;
  height: auto;
  display: block;
  overflow: hidden;
  clear: both;
  margin: 0 auto;
  padding: 0 var(--BasicPadding);
}

.box-content-with-sidebar {
  width: 100%;
  max-width: var(--PageSidebarWith);
  float: var(--FloatLtoN);
}

.box-content-sidebar {
  width: var(--SidebarWith);
  float: var(--FloatRtoN);
  margin-left: var(--BasicMargin);
  position: relative;
}

.box-content-with-sidebar-inside {
  width: 100%;
  max-width: var(--PageSidebarInsideWith);
  float: var(--FloatRtoN);
}

.box-content-sidebar-inside {
  width: var(--SidebarInsideWith);
  float: var(--FloatLtoN);
  margin-right: var(--BasicMargin);
  position: relative;
}

@media(max-width: 1200px) {

  .box-content-with-sidebar,
  .box-content-sidebar,
  .box-content-with-sidebar-small,
  .box-content-sidebar-small {
    width: 100%;
    max-width: 100%;
    float: var(--FloatRtoN);
    margin: 0 auto;
  }
}

@media(max-width: 720px) {

  .box-content-with-sidebar,
  .box-content-sidebar,
  .box-content-with-sidebar-small,
  .box-content-sidebar-small {
    width: 100%;
    max-width: 100%;
    float: var(--FloatRtoN);
    margin: 0 auto;
  }
}

/*------- Basic Color Contents -------*/
.box-content-brand {
  background-color: var(--BrandColor);
  color: var(--LightColor);
}

.box-content-secondary {
  background-color: var(--SecondaryColor);
  color: var(--LightColor);
}

.box-content-dark {
  background-color: var(--DarkColor);
  color: var(--LightColor);
}

.box-content-medium {
  background-color: var(--MediumLightColor);
  color: var(--DarkColor);
}

.box-content-medium-dark {
  background-color: var(--MediumDarkColor);
  color: var(--LightColor);
}

.box-content-light {
  background-color: var(--LightColor);
  color: var(--DarkColor);
}

.box-content-medium-light {
  background-color: var(--MediumLightColor);
  color: var(--DarkColor);
}

.box-content-alert {
  background-color: var(--AlertColor);
  color: var(--LightColor);
}

/*------- Basic Color Contents -------*/
.box-content-brand h2,
.box-content-secondary h2,
.box-content-dark h2,
.box-content-medium-dark h2,
.box-content-brand a,
.box-content-secondary a,
.box-content-dark a,
.box-content-medium-dark a {
  color: var(--LightColor);
}

.box-content-light h2,
.box-content-medium h2,
.box-content-medium-light h2 {
  color: var(--DarkColor);
}

.box-content-brand a:hover {
  color: var(--SecondaryColor);
}

.box-content-secondary a:hover {
  color: var(--DarkColor);
}

.box-content-dark a:hover,
.box-content-medium-dark a:hover {
  color: var(--BrandColor);
}

.box-content-light a,
.box-content-medium a,
.box-content-medium-light a {
  color: var(--BrandColor);
}

.box-content-light a:hover,
.box-content-medium a:hover,
.box-content-medium-light a:hover {
  color: var(--SecondaryColor);
}

/*------- Transparency Color Contents -------*/
.box-content-brand-trans {
  background-color: rgba(var(--BrandColorRGB), .8) !important;
}

.box-content-secondary-trans {
  background-color: rgba(var(--SecondaryColorRGB), .9) !important;
}

.box-content-dark-trans {
  background-color: rgba(var(--DarkColorRGB), .9) !important;
}

.box-content-dark-trans-small {
  background-color: rgba(var(--DarkColorRGB), .4) !important;
}

.box-content-light-trans {
  background-color: rgba(var(--LightColorRGB), .9) !important;
}

.box-content-gradient {
  background: -moz-linear-gradient(-45deg, var(--BrandColor) 15%, var(--SecondaryColor) 85%);
  background: -webkit-linear-gradient(-45deg, var(--BrandColor) 15%, var(--SecondaryColor) 85%);
  background: linear-gradient(135deg, var(--BrandColor) 15%, var(--SecondaryColor) 85%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--BrandColor)', endColorstr='var(--SecondaryColor) ', GradientType=1);
}

.box-content-gradient-brand-trans {
  background: -webkit-linear-gradient(rgba(var(--BrandColorRGB), .1) 0%, rgba(var(--BrandColorRGB), .95) 100%);
  background: -o-linear-gradient(rgba(var(--BrandColorRGB), .1) 0%, rgba(var(--BrandColorRGB), .95) 100%);
  background: linear-gradient(rgba(var(--BrandColorRGB), .1) 0%, rgba(var(--BrandColorRGB), .95) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(var(--BrandColorRGB),.1)', endColorstr='rgba(var(--BrandColorRGB),.95) ', GradientType=1);
}

.box-content-gradient-secondary-trans {
  background: -webkit-linear-gradient(rgba(var(--SecondaryColorRGB), 1) 0%, rgba(var(--SecondaryColorRGB), .1) 90%);
  background: -o-linear-gradient(rgba(var(--SecondaryColorRGB), 1) 0%, rgba(var(--SecondaryColorRGB), .1) 90%);
  background: linear-gradient(rgba(var(--SecondaryColorRGB), 1) 0%, rgba(var(--SecondaryColorRGB), .1) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(var(--SecondaryColorRGB),1)', endColorstr='rgba(var(--SecondaryColorRGB),.1) ', GradientType=1);
}

.box-content-gradient-dark-trans {
  background: -webkit-linear-gradient(rgba(var(--DarkColorRGB), .1) 0%, rgba(var(--DarkColorRGB), .95) 100%);
  background: -o-linear-gradient(rgba(var(--DarkColorRGB), .1) 0%, rgba(var(--DarkColorRGB), .95) 100%);
  background: linear-gradient(rgba(var(--DarkColorRGB), .1) 0%, rgba(var(--DarkColorRGB), .95) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(var(--DarkColorRGB),.1)', endColorstr='rgba(var(--DarkColorRGB),.95) ', GradientType=1);
}

.box-content-gradient-light-trans {
  background: -webkit-linear-gradient(rgba(var(--LightColorRGB), .1) 0%, rgba(var(--LightColorRGB), .95) 100%);
  background: -o-linear-gradient(rgba(var(--LightColorRGB), .1) 0%, rgba(var(--LightColorRGB), .95) 100%);
  background: linear-gradient(rgba(var(--LightColorRGB), .1) 0%, rgba(var(--LightColorRGB), .95) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(var(--LightColorRGB),.1)', endColorstr='rgba(var(--LightColorRGB),.95) ', GradientType=1);
}

/*------- Image Contents -------*/
.box-content-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.box-content-image-top-center {
  background-position: top center;
}

.box-content-image-bottom-center {
  background-position: bottom center;
}

.box-content-image-center-right {
  background-position: right center;
}

.box-content-image-left-center {
  background-position: left center;
}

.box-content-image-fixed {
  background-attachment: fixed;
}

.box-content-image-contain {
  background-size: contain;
}

.box-content-image-blend {
  background-blend-mode: luminosity;
  /*background-blend-mode: soft-light;*/
}

.box-content-image-blend:hover {
  background-blend-mode: normal;
}

.box-content-image-blend-hover:hover {
  background-blend-mode: luminosity;
}

.image-big-hover img,
.image-big-hover:hover img,
.box-big-hover {
  z-index: 1;
  -webkit-transition: .2s ease-in;
  -moz-transition: .2s ease-in;
  -o-transition: .2s ease-in;
  transition: .2s ease-in;
}

.image-big-hover:hover img {
  transform: scale(1.25);
  -webkit-transform: scale(1.25);
  z-index: 2;
}

.box-big-hover:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.02);
  z-index: 2;
}

.box-content-overlap {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

@media(max-width: 720px) {
  .box-content-image-mobile-center-center {
    background-position: center center;
  }

  .box-content-image-mobile-top-center {
    background-position: top center;
  }

  .box-content-image-mobile-bottom-center {
    background-position: bottom center;
  }

  .box-content-image-mobile-center-right {
    background-position: right center;
  }

  .box-content-image-mobile-left-center {
    background-position: left center;
  }

  .box-content-image-mobile-fixed {
    background-attachment: fixed;
  }

  .box-content-image-mobile-contain {
    background-size: contain;
  }

  .box-content-image-mobile-cover {
    background-size: cover;
  }
}

.background-deco-light {
  background-image: url(../../images/background/background-light.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  /*background-blend-mode: soft-light;*/
  background-size: cover;
  background-attachment: fixed;
}

.background-deco-dark {
  background-image: url(../../images/background/background-5.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  /*background-blend-mode: soft-light;*/
  background-size: cover;
  background-attachment: fixed;
}

.background-deco-brand {
  background-image: url(../../images/background/background-5.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  /*background-blend-mode: soft-light;*/
  background-size: cover;
  background-attachment: fixed;
}

/*--------------------------------------------- GRID -------------------------------------------------------*/
.grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/*------- Without Margin -------*/
.grid-one>li,
.grid-two>li,
.grid-three>li,
.grid-four>li,
.grid-five>li,
.grid-six {
  margin: 0;
}

.grid-one>li {
  width: 100%;
}

.grid-two>li {
  width: 50%;
}

.grid-three>li {
  width: 33.333%;
}

.grid-four>li {
  width: 25%;
}

.grid-five>li {
  width: 20%;
}

.grid-six>li {
  width: 16.666%;
}

@media(max-width: 1200px) {
  .grid-one>li {
    width: 100%;
  }

  .grid-two>li,
  .grid-three>li,
  .grid-four>li,
  .grid-five>li,
  .grid-six>li {
    width: 50%;
  }
}

@media(max-width: 720px) {

  .grid-two>li,
  .grid-three>li,
  .grid-four>li,
  .grid-five>li,
  .grid-six>li {
    width: 100%;
  }
}

/*------- With Margin -------*/
.grid-one-margin>li {
  width: 100%;
}

.grid-two-margin>li {
  width: 49%;
}

.grid-three-margin>li {
  width: 32%;
}

.grid-four-margin>li {
  width: 23.5%;
}

.grid-five-margin>li {
  width: 18.4%;
}

.grid-six-margin>li {
  width: 15%;
}

@media(min-width: 1200px) {

  .grid-two-margin>li,
  .grid-three-margin>li,
  .grid-four-margin>li,
  .grid-five-margin>li,
  .grid-six-margin>li {
    margin: 1%;
  }

  .grid-two-margin>li:nth-child(2n+1) {
    margin-left: 0;
  }

  .grid-two-margin>li:nth-child(2n) {
    margin-right: 0;
  }

  .grid-three-margin>li:nth-child(3n+1) {
    margin-left: 0;
  }

  .grid-three-margin>li:nth-child(3n) {
    margin-right: 0;
  }

  .grid-four-margin>li:nth-child(4n+1) {
    margin-left: 0;
  }

  .grid-four-margin>li:nth-child(4n) {
    margin-right: 0;
  }

  .grid-five-margin>li:nth-child(5n+1) {
    margin-left: 0;
  }

  .grid-five-margin>li:nth-child(5n) {
    margin-right: 0;
  }

  .grid-six-margin>li:nth-child(6n+1) {
    margin-left: 0;
  }

  .grid-six-margin>li:nth-child(6n) {
    margin-right: 0;
  }
}

@media(max-width: 1200px) {
  .grid-one-margin>li {
    margin-bottom: var(--BasicMargin);
    width: 96%;
  }

  .grid-two-margin>li,
  .grid-three-margin>li,
  .grid-four-margin>li,
  .grid-five-margin>li,
  .grid-six-margin>li {
    margin: 2%;
    margin-bottom: var(--BasicMargin);
    width: 46%;
  }
}

@media(max-width: 720px) {

  .grid-one-margin>li,
  .grid-two-margin>li,
  .grid-three-margin>li,
  .grid-four-margin>li,
  .grid-five-margin>li,
  .grid-six-margin>li {
    margin: 1%;
    margin-bottom: var(--BasicMargin);
    width: 98%;
  }
}

@media(max-width: 1200px) {

  .grid-one-margin>li>.grid-two-margin>li,
  .grid-one-margin>li>.grid-three-margin>li {
    margin: 0 2%;
    width: 48%;
  }

  .grid-one-margin>li>.grid-two-margin>li:nth-child(2n+1),
  .grid-one-margin>li>.grid-three-margin>li:nth-child(2n+1) {
    margin-left: 0;
  }

  .grid-one-margin>li>.grid-two-margin>li:nth-child(2n),
  .grid-one-margin>li>.grid-three-margin>li:nth-child(2n) {
    margin-right: 0;
  }
}

/*------- Auto distribution -------*/
.grid-one-line {
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.grid-one-line li {
  margin: 0 2% 20px;
}

.grid-one-line-margin-small li {
  margin: 0 .5% 10px;
}

/*------- Grid gallery -------*/
.grid-gallery-portfolio {
  column-count: 3;
}

.grid-gallery-portfolio li {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: var(--BasicMargin);
}

.grid-gallery-portfolio-vert {
  padding-top: 500px !important;
}

.grid-gallery-portfolio-square {
  padding-top: 220px !important;
}

.grid-gallery-portfolio-horz {
  padding-top: 120px !important;
}

.grid-gallery-portfolio-hover li:hover {
  opacity: 1;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}

.grid-gallery-portfolio-hover:hover li:not(:hover) {
  opacity: .4;
  filter: saturate(0%);
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}

@media(max-width: 1200px) {
  .grid-gallery-portfolio {
    column-count: 2;
  }

  .grid-gallery-portfolio-vert {
    padding-top: 300px !important;
  }

  .grid-gallery-portfolio-square {
    padding-top: 140px !important;
  }

  .grid-gallery-portfolio-horz {
    padding-top: 80px !important;
  }
}

@media(max-width: 720px) {
  .grid-gallery-portfolio {
    column-count: 1;
  }
}

/*------- Grid Sidebar -------*/
.grid-sidebar {
  height: auto;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
}

/*------- Columns -------*/
.text-column-two {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.text-column-three {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

.text-column-four {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
}

.text-column-gap-big {
  column-gap: 50px;
}

@media(max-width: 720px) {
  .text-column-mobile-one {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

/*--------------------------------------------- BASIC BOX FORMATS -------------------------------------------------------*/
/*------- Padding-------*/
.padding-all {
  padding: var(--BasicPadding);
}

.padding-all-extra-big {
  padding: calc(var(--BasicPadding) * 4);
}

.padding-all-big,
.padding-all-big-mobile-normal,
.padding-all-big-mobile-no {
  padding: calc(var(--BasicPadding) * 2);
}

.padding-all-small {
  padding: calc(var(--BasicPadding) / 2);
}

.padding-all-extra-small {
  padding: calc(var(--BasicPadding) / 4);
}

.padding-vert,
.padding-vert-mobile-no {
  padding-top: var(--BasicPadding);
  padding-bottom: var(--BasicPadding);
}

.padding-vert-flex {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-vert-extra-big {
  padding-top: calc(var(--BasicPadding) * 4);
  padding-bottom: calc(var(--BasicPadding) * 4);
}

.padding-vert-big,
.padding-vert-big-mobile-normal,
.padding-vert-big-mobile-no {
  padding-top: calc(var(--BasicPadding) * 2);
  padding-bottom: calc(var(--BasicPadding) * 2);
}

.padding-vert-extra-small {
  padding-top: calc(var(--BasicPadding) / 4);
  padding-bottom: calc(var(--BasicPadding) / 4);
}

.padding-vert-small {
  padding-top: calc(var(--BasicPadding) / 2);
  padding-bottom: calc(var(--BasicPadding) / 2);
}

.padding-horz {
  padding-left: var(--BasicPadding);
  padding-right: var(--BasicPadding);
}

.padding-horz-small {
  padding-left: calc(var(--BasicPadding) / 2);
  padding-right: calc(var(--BasicPadding) / 2);
}

.padding-horz-extra-small {
  padding-left: calc(var(--BasicPadding) / 4);
  padding-right: calc(var(--BasicPadding) / 4);
}

.padding-horz-mobile-vert {
  padding: 0 calc(var(--BasicPadding) * 2);
}

.padding-top {
  padding-top: var(--BasicPadding);
}

.padding-top-extra-big {
  padding-top: calc(var(--BasicPadding) * 4);
}

.padding-top-big {
  padding-top: calc(var(--BasicPadding) * 2);
}

.padding-top-small {
  padding-top: calc(var(--BasicPadding) / 2);
}

.padding-top-extra-small {
  padding-top: calc(var(--BasicPadding) / 4);
}

.padding-top-no {
  padding-top: 0 !important;
}

.padding-bottom {
  padding-bottom: var(--BasicPadding);
}

.padding-bottom-extra-big {
  padding-bottom: calc(var(--BasicPadding) * 4);
}

.padding-bottom-big {
  padding-bottom: calc(var(--BasicPadding) * 2);
}

.padding-bottom-small {
  padding-bottom: calc(var(--BasicPadding) / 2);
}

.padding-bottom-extra-small {
  padding-bottom: calc(var(--BasicPadding) / 4);
}

.padding-bottom-no {
  padding-bottom: 0 !important;
}

.padding-left {
  padding-left: var(--BasicPadding);
}

.padding-left-extra-big {
  padding-left: calc(var(--BasicPadding) * 4);
}

.padding-left-big {
  padding-left: calc(var(--BasicPadding) * 2);
}

.padding-left-small {
  padding-left: calc(var(--BasicPadding) / 2);
}

.padding-left-extra-small {
  padding-left: calc(var(--BasicPadding) / 4);
}

.padding-left-no {
  padding-left: 0 !important;
}

.padding-right {
  padding-right: var(--BasicPadding);
}

.padding-right-extra-big {
  padding-right: calc(var(--BasicPadding) * 4);
}

.padding-right-big {
  padding-right: calc(var(--BasicPadding) * 2);
}

.padding-right-small {
  padding-right: calc(var(--BasicPadding) / 2);
}

.padding-right-extra-small {
  padding-right: calc(var(--BasicPadding) / 4);
}

.padding-right-no {
  padding-right: 0 !important;
}

.padding-text {
  padding: calc(var(--BasicPadding) / 2) var(--BasicPadding);
}

.padding-no {
  padding: 0 !important;
}

@media(max-width: 720px) {

  .padding-mobile-no,
  .padding-all-big-mobile-no {
    padding: 0 !important;
  }

  .padding-vert-mobile-no,
  .padding-vert-big-mobile-no {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .padding-vert-big-mobile-normal {
    padding-top: var(--BasicPadding);
    padding-bottom: var(--BasicPadding);
  }

  .padding-vert-flex,
  .padding-all-big-mobile-normal {
    padding: var(--BasicPadding);
  }

  .padding-horz-mobile-vert {
    padding: 30px 0;
  }

  .padding-mobile-vert {
    padding-left: var(--BasicPadding);
    padding-right: var(--BasicPadding);
  }

  .padding-mobile-all {
    padding: var(--BasicPadding) !important;
  }
}

/*------- Margin -------*/
.margin-center {
  margin: 0 auto !important;
}

.margin-top {
  margin-top: var(--BasicMargin) !important;
}

.margin-top-extra-big {
  margin-top: calc(var(--BasicMargin) * 4) !important;
}

.margin-top-big {
  margin-top: calc(var(--BasicMargin) * 2) !important;
}

.margin-top-small {
  margin-top: calc(var(--BasicMargin) / 2) !important;
}

.margin-top-extra-small {
  margin-top: calc(var(--BasicMargin) / 4) !important;
}

.margin-top-no {
  margin-top: 0 !important;
}

.margin-bottom {
  margin-bottom: var(--BasicMargin) !important;
}

.margin-bottom-extra-big {
  margin-bottom: calc(var(--BasicMargin) * 4) !important;
}

.margin-bottom-big {
  margin-bottom: calc(var(--BasicMargin) * 2) !important;
}

.margin-bottom-small {
  margin-bottom: calc(var(--BasicMargin) / 2) !important;
}

.margin-bottom-extra-small {
  margin-bottom: calc(var(--BasicMargin) / 4) !important;
}

.margin-bottom-no {
  margin-bottom: 0 !important;
}

.margin-left {
  margin-left: var(--BasicMargin) !important;
}

.margin-left-extra-big {
  margin-left: calc(var(--BasicMargin) * 4) !important;
}

.margin-left-big {
  margin-left: calc(var(--BasicMargin) * 2) !important;
}

.margin-left-small {
  margin-left: calc(var(--BasicMargin) / 2) !important;
}

.margin-left-extra-small {
  margin-left: calc(var(--BasicMargin) / 4) !important;
}

.margin-left-no {
  margin-left: 0 !important;
}

.margin-right {
  margin-right: var(--BasicMargin) !important;
}

.margin-right-extra-big {
  margin-right: calc(var(--BasicMargin) * 4) !important;
}

.margin-right-big {
  margin-right: calc(var(--BasicMargin) * 2) !important;
}

.margin-right-small {
  margin-right: calc(var(--BasicMargin) / 2) !important;
}

.margin-right-extra-small {
  margin-right: calc(var(--BasicMargin) / 4) !important;
}

.margin-right-no {
  margin-right: 0 !important;
}

.margin-no {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.last-p-margin-no p:last-child {
  margin-bottom: 0 !important;
}

@media(max-width: 720px) {
  .margin-mobile-center {
    margin: 0 auto !important;
  }

  .margin-mobile-top {
    margin-top: var(--BasicMargin) !important;
  }

  .margin-mobile-top-big {
    margin-top: calc(var(--BasicMargin) * 2) !important;
  }

  .margin-mobile-top-small {
    margin-top: calc(var(--BasicMargin) / 2) !important;
  }

  .margin-mobile-bottom {
    margin-bottom: var(--BasicMargin) !important;
  }

  .margin-mobile-bottom-big {
    margin-bottom: calc(var(--BasicMargin) * 2) !important;
  }

  .margin-mobile-bottom-small {
    margin-bottom: calc(var(--BasicMargin) / 2) !important;
  }

  .margin-mobile-left {
    margin-left: var(--BasicMargin) !important;
  }

  .margin-mobile-left-small {
    margin-left: calc(var(--BasicMargin) / 2) !important;
  }

  .margin-mobile-left-extra-small {
    margin-left: calc(var(--BasicMargin) / 4) !important;
  }

  .margin-mobile-right {
    margin-right: var(--BasicMargin) !important;
  }

  .margin-mobile-right-small {
    margin-right: calc(var(--BasicMargin) / 2) !important;
  }

  .margin-mobile-right-extra-small {
    margin-right: calc(var(--BasicMargin) / 4) !important;
  }

  .margin-mobile-no {
    margin: 0 !important;
  }
}

/*------- Display -------*/
.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.display-flex {
  display: flex !important;
}

.display-grid {
  display: grid !important;
}

.display-inline-block {
  display: inline-block;
}

.display-table {
  display: table;
  vertical-align: middle;
}

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.display-table-row {
  display: table-row;
  vertical-align: middle;
}

.display-table-same {
  table-layout: fixed;
  overflow-wrap: break-word;
  white-space: normal;
}

.display-table-two>.display-table-cell:nth-child(even),
.display-table-two>.display-table-row>.display-table-cell:nth-child(even) {
  padding-left: calc(var(--BasicPadding) * 2);
}

.display-table-two>.display-table-cell:nth-child(odd),
.display-table-two>.display-table-row>.display-table-cell:nth-child(odd) {
  padding-right: calc(var(--BasicPadding) * 2);
}

.display-table-two-small>.display-table-cell:nth-child(even),
.display-table-two-small>.display-table-row>.display-table-cell:nth-child(even) {
  padding-left: var(--BasicPadding);
}

.display-table-two-small>.display-table-cell:nth-child(odd),
.display-table-two-small>.display-table-row>.display-table-cell:nth-child(odd) {
  padding-right: var(--BasicPadding);
}

.display-table-two-extra-small>.display-table-cell:nth-child(even) {
  padding-left: calc(var(--BasicPadding) / 2);
}

.display-table-two-extra-small>.display-table-cell:nth-child(odd) {
  padding-right: calc(var(--BasicPadding) / 2);
}

.display-table-three>.display-table-cell {
  padding-left: var(--BasicPadding);
  padding-right: var(--BasicPadding);
}

.display-table-three>.display-table-cell:nth-child(1) {
  padding-left: 0px;
}

.display-table-three>.display-table-cell:nth-child(3) {
  padding-right: 0px;
}

.display-table-three-small>.display-table-cell {
  padding-left: calc(var(--BasicPadding) / 2);
  padding-right: calc(var(--BasicPadding) / 2);
}

.display-table-three-small>.display-table-cell:nth-child(1) {
  padding-left: 0px;
}

.display-table-three-small>.display-table-cell:nth-child(3) {
  padding-right: 0px;
}

@media(max-width: 720px) {
  .display-mobile-none {
    display: none;
  }

  .display-mobile-block {
    display: block !important;
    width: 100% !important;
  }

  .display-table-two-mobile-no>.display-table-cell:nth-child(even) {
    padding-left: 0px;
  }

  .display-table-two-mobile-no>.display-table-cell:nth-child(odd) {
    padding-right: 0px;
  }

  .display-table-three-mobile-no>.display-table-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/*------- Overflow -------*/
.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.text-overflow {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text-overflow-two-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.text-overflow-three-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media(max-width: 720px) {
  .scroll-mobile {
    overflow: scroll;
  }

  .overflow-mobile-hidden {
    overflow: hidden;
  }
}

/*------- Position ------*/
.position-relative {
  position: relative;
}

.position-fixed {
  position: fixed;
}

.position-absolute {
  position: absolute;
}

.position-top-no {
  top: 0;
}

.position-bottom-no {
  bottom: 0;
}

.position-left-no {
  left: 0;
}

.position-right-no {
  right: 0;
}

@media(max-width: 900px) {
  .position-mobile-relative {
    position: relative !important;
  }

  .position-mobile-absolute {
    position: absolute !important;
  }
}

/*------- Z-Index -------*/
.z-index-tera-top {
  z-index: 111111;
}

.z-index-mega-top {
  z-index: 11111;
}

.z-index-extra-top {
  z-index: 1111;
}

.z-index-top {
  z-index: 111;
}

.z-index-normal {
  z-index: 11;
}

.z-index-small {
  z-index: 1;
}

/*------- Float -------*/
.float-right,
.float-right-mobile-no {
  float: right;
}

.float-left,
.float-left-mobile-no {
  float: left;
}

@media(max-width: 720px) {
  .float-right-mobile-no {
    float: var(--FloatRtoN);
  }

  .float-left-mobile-no {
    float: var(--FloatLtoN);
  }
}

/*------- Content Sizes -------*/
.width-all {
  width: 100%;
}

.width-two {
  width: 50%;
}

.width-three {
  width: 33.333%;
}

.width-four {
  width: 25%;
}

.width-five {
  width: 20%;
}

.width-six {
  width: 16.666%;
}

.height-header-all {
  height: calc(100% - 179px);
}

.height-barheader-all {
  height: calc(100% - 44px);
}

.min-height-all {
  height: auto;
  min-height: 100% !important;
}

.height-all,
.height-all-mobile-auto {
  height: 100%;
}

.center-content {
  display: grid;
  place-items: center;
}

@media(max-width: 720px) {

  .height-header-all,
  .height-all-mobile-auto {
    height: auto;
  }

  .width-all {
    width: 100%;
  }

  .width-mobile-two {
    width: 50%;
  }

  .width-mobile-mobile-three {
    width: 33.333%;
  }

  .width-four {
    width: 25%;
  }

  .width-mobile-five {
    width: 20%;
  }

  .width-mobile-six {
    width: 16.666%;
  }
}

/*------- Borders -------*/
.border-extra-big {
  border-width: 20px !important;
}

.border-big {
  border-width: 10px !important;
}

.border-normal {
  border-width: 5px !important;
}

.border-small {
  border-width: 2px !important;
}

.border-extra-small {
  border-width: 1px !important;
}

.border-brand {
  border-color: var(--BrandColor) !important;
}

.border-secondary {
  border-color: var(--SecondaryColor) !important;
}

.border-dark {
  border-color: var(--DarkColor) !important;
}

.border-medium {
  border-color: var(--MediumColor) !important;
}

.border-mediumlight {
  border-color: var(--MediumLightColor) !important;
}

.border-light {
  border-color: var(--LightColor) !important;
}

.border-medium-light {
  border-color: var(--MediumLightColor) !important;
}

.border-solid {
  border-style: solid !important;
}

.border-dotted {
  border-style: dotted !important;
}

.border-top {
  border-bottom: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
}

.border-bottom {
  border-top: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
}

.border-left {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-right: 0 !important;
}

.border-right {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
}

.border-radius-no {
  border-radius: 0 !important;
}

.border-radius {
  border-radius: 10px;
}

.border-radius-small {
  border-radius: 5px;
}

.border-radius-big {
  border-radius: 30px;
}

.border-radius-extra-big {
  border-radius: 50px;
}

.border-radius-all {
  border-radius: 100%;
}

.border-radius-left-top {
  border-top-left-radius: 10px !important;
}

.border-radius-right-top {
  border-top-right-radius: 10px !important;
}

.border-radius-left-bottom {
  border-bottom-left-radius: 10px !important;
}

.border-radius-right-bottom {
  border-bottom-right-radius: 10px !important;
}

.border-radius-left-top-small {
  border-top-left-radius: 5px !important;
}

.border-radius-right-top-small {
  border-top-right-radius: 5px !important;
}

.border-radius-left-bottom-small {
  border-bottom-left-radius: 5px !important;
}

.border-radius-right-bottom-small {
  border-bottom-right-radius: 5px !important;
}

.border-radius-left-top-big {
  border-top-left-radius: 30px !important;
}

.border-radius-right-top-big {
  border-top-right-radius: 30px !important;
}

.border-radius-left-bottom-big {
  border-bottom-left-radius: 30px !important;
}

.border-radius-right-bottom-big {
  border-bottom-right-radius: 30px !important;
}

/*--------------------------------------------- BASIC TEXT FORMATS -------------------------------------------------------*/
/*------- Align -------*/
.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

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

.vertical-align {
  vertical-align: middle;
}

.vertical-align-top {
  vertical-align: top;
}

.vertical-align-bottom {
  vertical-align: bottom;
}

.vertical-align-text-top {
  vertical-align: text-top;
}

.vertical-align-baseline {
  vertical-align: baseline;
}

.align-items-reset {
  align-items: inherit;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-center {
  align-items: center;
}

@media(max-width: 1200px) {
  .align-tablet-center {
    text-align: center;
  }

  .align-tablet-left {
    text-align: left;
  }

  .align-tablet-right {
    text-align: right;
  }
}

@media(max-width: 720px) {
  .align-mobile-center {
    text-align: center;
  }

  .align-mobile-left {
    text-align: left;
  }

  .align-mobile-right {
    text-align: right;
  }
}

/*------- Variations -------*/
.bold {
  font-weight: bold !important;
}

.semibold {
  font-weight: 500 !important;
}

.bold-no {
  font-weight: normal !important;
}

.italic {
  font-style: italic;
}

.overline {
  text-decoration: line-through;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: .5px;
}

.uppercaseNo {
  text-transform: none !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.textTransformNo {
  text-transform: none !important;
}

.capitalize {
  text-transform: capitalize;
}

.capitalize-first::first-letter {
  text-transform: capitalize;
}

.baseline-small {
  line-height: 1;
}

.baseline-extra-small {
  line-height: .5;
}

/*------- Sizes -------*/
.i-extra-big {
  font-size: 96px !important;
}

.i-big {
  font-size: 72px !important;
}

.i-normal {
  font-size: 60px !important;
}

.i-small {
  font-size: 54px !important;
}

.i-extra-small {
  font-size: 48px !important;
}

.h-extra-big {
  font-size: 42px !important;
}

.h-big {
  font-size: 36px !important;
}

.h-normal {
  font-size: 30px !important;
}

.h-small {
  font-size: 24px !important;
}

.h-extra-small {
  font-size: 22px !important;
}

.p-extra-big {
  font-size: 20px !important;
}

.p-big {
  font-size: 18px !important;
}

.p-normal {
  font-size: 16px !important;
}

.p-small {
  font-size: 14px !important;
}

.p-extra-small {
  font-size: 12px !important;
}

/*------- Colors -------*/
.text-color-brand {
  color: var(--BrandColor) !important;
}

.text-color-secondary {
  color: var(--SecondaryColor) !important;
}

.text-color-dark {
  color: var(--DarkColor) !important;
}

.text-color-medium-dark {
  color: var(--MediumDarkColor) !important;
}

.text-color-medium {
  color: var(--MediumColor) !important;
}

.text-color-medium-light {
  color: var(--MediumLightColor) !important;
}

.text-color-light {
  color: var(--LightColor) !important;
}

.text-color-alert {
  color: var(--AlertColor) !important;
}

/*------- Colors Hovers -------*/
a.text-color-secondary:hover {
  color: var(--BrandColor) !important;
}

a.text-color-dark:hover {
  color: var(--text-color-secondary) !important;
}

.text-only {
  max-width: 80%;
  margin: 0 auto;
}

@media(max-width: 720px) {
  .text-only {
    max-width: 90%;
  }
}

.text-shadow {
  text-shadow: 2px 2px 5px rgba(var(--DarkColorRGB), .15);
}

.box-shadow {
  box-shadow: 3px 3px 15px 0 rgba(var(--DarkColorRGB), .15);
}

/*--------------------------------------------- BASIC IMAGES FORMATS -------------------------------------------------------*/
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
  margin: 0 auto;
}

.image-size-extra-big {
  min-width: 100px;
  max-width: 600px;
}

.image-size-big {
  min-width: 100px;
  max-width: 500px;
}

.image-size-default {
  min-width: 100px;
  max-width: 400px;
}

.image-size-small-default {
  min-width: 100px;
  max-width: 300px;
}

.image-size-small {
  min-width: 50px;
  max-width: 200px;
}

.image-size-extra-small {
  min-width: 50px;
  max-width: 100px;
}

.theme-image-color {
  filter: invert(0.25) sepia(1) hue-rotate(160deg) saturate(20%) brightness(1.2);
}

.theme-image-color-hover:hover {
  filter: invert(0.25) sepia(1) hue-rotate(160deg) saturate(20%) brightness(1.2);
}

.image-hover-vfx {
  background-image: linear-gradient(290deg, rgba(var(--LightColorRGB), 0) 5%, rgba(var(--LightColorRGB), .50) 40%, rgba(var(--LightColorRGB), .50) 50%, rgba(var(--LightColorRGB), .25) 50%, rgba(var(--LightColorRGB), .0) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20%;
  right: -20%;
  z-index: 1;
}

@media(max-width: 720px) {
  .image-size-extra-big {
    max-width: 100%;
  }

  .image-size-big {
    max-width: 100%;
  }

  .image-size-default {
    max-width: 100%;
  }

  .image-size-small-default {
    max-width: 100%;
  }

  .image-size-small {
    max-width: 100%;
  }

  .image-size-extra-small {
    max-width: 100%;
  }

  /*---Mobile---*/
  .image-size-mobile-extra-big {
    min-width: 100px;
    width: 600px;
  }

  .image-size-mobile-big {
    min-width: 100px;
    width: 500px;
  }

  .image-size-mobile-default {
    min-width: 100px;
    width: 400px;
  }

  .image-size-mobile-small-default {
    min-width: 100px;
    width: 300px;
  }

  .image-size-mobile-small {
    min-width: 50px;
    width: 200px;
  }

  .image-size-mobile-extra-small {
    min-width: 50px;
    width: 100px;
  }
}

/*--------------------------------------------- BASIC ICONS FORMATS -------------------------------------------------------*/
.image-normal {
  width: 200px;
  height: 200px;
}

.image-icon-extra-small {
  width: 25px;
  height: 25px;
}

.image-icon-small {
  width: 50px;
  height: 50px;
}

.image-icon-normal {
  width: 75px;
  height: 75px;
}

.image-icon-big {
  width: 100px;
  height: 100px;
}

.image-icon-extra-big {
  width: 200px;
  height: 200px;
}

.image-icon-mega-big {
  width: 600px;
}

@media(max-width: 720px) {
  .image-icon-big {
    width: 80px;
    height: 80px;
  }

  .image-icon-extra-big {
    width: 140px;
    height: 140px;
  }

  .image-icon-mega-big {
    width: 300px;
  }
}

.image-circle {
  border-radius: 50% !important;
}

.icon-border {
  color: transparent !important;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--LightColor);
}

.icon-border-brand {
  -webkit-text-stroke-color: var(--BrandColor);
}

.icon-border-secondary {
  -webkit-text-stroke-color: var(--SecondaryColor);
}

.icon-border-medium {
  -webkit-text-stroke-color: var(--MediumColor);
}

.icon-border-medium-light {
  -webkit-text-stroke-color: var(--MediumLightColor);
}

.icon-border-medium-dark {
  -webkit-text-stroke-color: var(--MediumDarkColor);
}

.icon-border-dark {
  -webkit-text-stroke-color: var(--DarkColor);
}

.icon-border-light {
  -webkit-text-stroke-color: var(--LightColor);
}

/*-----------------------------------------------------------------------------------------------*/
/*---------------------------------- BASIC FORMS FORMATS ----------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
form ul li {
  margin-bottom: calc(var(--BasicMargin) / 2);
}

.form-inputs-secondary-deco input {
  border-left: 5px solid var(--SecondaryColor);
}

.form-inputs-brand-deco input {
  border-left: 5px solid var(--BrandColor);
}

/*------- Interactive -------*/
.interactive {
  cursor: pointer;
}

.interactive-no {
  cursor: default;
}

.active {
  opacity: 1;
}

.active:hover {
  opacity: .50;
}

.inactive {
  opacity: .50;
}

.inactive:hover {
  opacity: 1;
}

.optionselect {
  opacity: .50;
}

/*------- Interactive -------*/
.input-reset {
  /*width: auto !important;*/
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
}

.input-focus-no:focus {
  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

/*------- Select -------*/
.select-simple {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
}

.select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
}

.select::-ms-expand {
  display: none;
}

.select-box {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
}

.select,
.select-box::after {
  grid-area: select;
}

.select-box::after {
  content: "";
  width: 15px;
  height: 10px;
  background-color: var(--MediumColor);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  justify-self: end;
}

.select option,
.select-simple option {
  color: var(--DarkColor);
}

.optionselect {
  opacity: .50;
}

/*------- Checkbox -------*/
.checkbox,
.checkbox-small {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid var(--SecondaryColor);
  width: 18px;
  height: 18px;
  border-radius: 2px;
  display: inline-block;
  margin: 0 5px 0 0;
  background: var(--LightColor);
  padding: 0;
  vertical-align: text-top;
  position: relative;
  overflow: hidden;
}

.checkbox-small {
  border: 1px solid var(--DarkColor);
  width: 16px;
  height: 16px;
}

.checkbox-small:checked::after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 10px;
  vertical-align: baseline;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -6px;
  left: 2px;
  color: white;
}

.checkbox:checked {
  background: var(--BrandColor);
}

.checkbox:checked::after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 12px;
  vertical-align: baseline;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -5px;
  left: 1px;
  color: white;
}

.checkbox-small:checked {
  background: var(--DarkColor);
}

.box-content-brand .checkbox,
.box-content-secondary .checkbox,
.box-content-dark .checkbox,
.box-content-brand .checkbox-small,
.box-content-secondary .checkbox-small,
.box-content-dark .checkbox-small {
  border-color: var(--LightColor);
}

.box-content-light .checkbox,
.box-content-light .checkbox-small {
  border-color: var(--BrandColor);
}

/*------- Radio -------*/
.radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid var(--SecondaryColor);
  width: 20px;
  height: 20px;
  border-radius: 18px;
  display: inline-block;
  margin: 0 5px 0 0;
  background: var(--LightColor);
  padding: 0;
  vertical-align: text-top;
}

.radio:checked {
  background: var(--BrandColor);
}

.radio:checked::after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 12px;
  vertical-align: top;
  width: 20px;
  height: 20px;
  color: white;
  margin-left: 2px;
}

.box-content-brand .radio,
.box-content-secondary .radio,
.box-content-dark .radio {
  border-color: var(--LightColor);
}

.box-content-light .radio {
  border-color: var(--BrandColor);
}

/*------- Form Warnings Contents-------*/
.form-warning-alert {
  background-color: var(--AlertColor);
  color: var(--LightColor);
}

.form-warning-advise {
  color: var(--LightColor);
  background-color: #dcaa10;
}

.form-warning-ok {
  color: var(--LightColor);
  background-color: #9dbd08;
}

.form-warning-alert a,
.form-warning-advise a,
.form-warning-ok a {
  color: var(--LightColor);
}

/*--------------------------------------------- BASIC BUTTONS FORMATS -------------------------------------------------------*/
.button-no,
.button-extra-small,
.button-small,
.button,
.button-line-small,
.button-line-extra-small {
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
}

/*------- Basic -------*/
.button-no {
  padding: 0;
  margin: 0;
  border: none;
  background: 0 0;
  font-size: 14px;
  line-height: 1;
}

.button-extra-small,
.button-small,
.button {
  color: var(--LightColor) !important;
  font-size: 11px;
  letter-spacing: .5px;
  padding: 5px 10px;
  border-radius: 2px;
  border: 2px solid var(--BrandColor);
  background-color: var(--BrandColor);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: transparent;
}

.button {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 3px;
}

.button-small {
  font-size: 12px;
  padding: 8px 15px;
}

.button-extra-small:hover,
.button-small:hover,
.button:hover {
  color: var(--LightColor) !important;
  border-color: var(--SecondaryColor);
  background-color: var(--SecondaryColor);
}

.button-icon-circle {
  padding: 10px 15px !important;
  border-radius: 100%;
}

/*------- Lineout -------*/
.button-line-extra-small,
.button-line-small,
.button-line {
  color: var(--BrandColor) !important;
  font-size: 11px;
  letter-spacing: .5px;
  border: 2px solid var(--BrandColor);
  border-radius: 2px;
  padding: 5px 10px;
  background: transparent;
}

.button-line {
  font-size: 14px;
  padding: 9px 19px;
  border: 3px solid var(--BrandColor);
  border-radius: 3px;
}

.button-line-small {
  padding: 10px 20px;
  font-size: 12px;
}

.button-line:hover,
.button-line-small:hover,
.button-line-extra-small:hover {
  color: var(--LightColor) !important;
  border-color: var(--BrandColor);
  background-color: var(--BrandColor);
}

.button-single-line {
  text-transform: inherit;
  padding: 10px 40px 10px 10px;
  border: 0;
  border-top: 3px solid var(--BrandColor);
  border-radius: 0;
}

/*------- Color Variations -------*/
.button-dark {
  background-color: var(--DarkColor);
  border-color: var(--DarkColor);
}

.button-secondary {
  background-color: var(--SecondaryColor);
  border-color: var(--SecondaryColor);
}

.button-secondary:hover {
  background-color: var(--BrandColor);
  border-color: var(--BrandColor);
}

.button-alert {
  background: var(--AlertColor);
  border-color: var(--AlertColor);
}

.button-light {
  background-color: var(--LightColor);
  border-color: var(--LightColor);
  color: var(--DarkColor) !important;
}

.button-light:hover {
  color: var(--LightColor) !important;
  background-color: var(--BrandColor);
  border-color: var(--BrandColor);
}

/*------- Lineout -------*/
.button-line-dark {
  color: var(--DarkColor) !important;
  border-color: var(--DarkColor);
  background: transparent;
}

.button-line-dark:hover {
  color: var(--LightColor) !important;
  background: var(--DarkColor);
  border-color: var(--DarkColor);
}

.button-line-secondary {
  color: var(--SecondaryColor) !important;
  border-color: var(--SecondaryColor);
  background: transparent;
}

.button-line-secondary:hover {
  color: var(--LightColor) !important;
  border-color: var(--SecondaryColor) !important;
  background-color: var(--SecondaryColor) !important;
}

.button-line-alert {
  color: var(--AlertColor) !important;
  border-color: var(--AlertColor);
  background: transparent;
}

.button-line-alert:hover {
  color: var(--LightColor) !important;
  border-color: var(--AlertColor) !important;
  background: var(--AlertColor) !important;
}

.button-line-light {
  color: var(--LightColor) !important;
  border-color: var(--LightColor);
  background: transparent;
}

.button-line-light:hover {
  color: var(--BrandColor) !important;
  background-color: var(--LightColor);
  border-color: var(--LightColor);
}