* {
  box-sizing: border-box;
}

*::selection {
  background-color: #e2007a;
  color: #fff;
}

*::-moz-selection {
  background-color: #e2007a;
  color: #fff;
}

img {
  max-width: 100%;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, sans-serif;
  color: #555;
  font-size: 15px;
  line-height: 1.2;
}

a {
  color: #e2007a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

hr {
  border: 1px solid #ccc;
}

.ib {
  display: inline-block;
  vertical-align: middle;
}

.position-relative {
  position: relative;
}

.block {
  display: block;
}

.none {
  display: none;
}

.mw500{
  max-width: 500px;
}
.w100p{
  width: 100%;
}

.mt-2{
  margin-top: 20px;
}

.tdn:hover {
  text-decoration: none;
}

.inline {
  display: inline;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.page-content.mt-0{
	margin-top: 0;
}

.page-content .mt-5{
	margin-top: 50px;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.bold {
  font-weight: bold;
}

.video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 93%;
}

.video-container{
  max-width: 900px;
  margin: 0 auto;
}

.video-container video {
  height: 100%;
  width: 100%;
}

.muted,
button.muted,
a.muted,
.muted button,
.muted a,
.link.muted {
  color: #999 !important;
  font-weight: normal;
}

a.muted,
.muted a {
  text-decoration: underline;
}

.padding-lr {
  padding-left: 10px;
  padding-right: 10px;
}

.padding-tb {
  padding-top: 10px;
  padding-bottom: 10px;
}

.m0auto{
  margin: 0 auto;
}

p:empty {
  margin: 1em;
}

/*
	INPUT & SELECT & FORM
*/
input,
textarea,
button,
select,
a {
  outline: 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
textarea,
select {
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0.2rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #e2007a;
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="date"]:disabled,
input[type="disabled"],
textarea:disabled,
select:disabled {
  background-color: #f0f0f0;
  color: #888;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type="number"] {
  -moz-appearance: textfield;
}

/* Alert */
#alerts {
  max-width: 1100px;
  margin: 0 auto;
}

.alert {
  background-color: transparent;
  padding: 10px;
  margin: 10px 0;
  border: 0;
  background-repeat: no-repeat;
  font-family: Questrial;
  padding-left: 40px;
  background-size: auto 40px;
  border: 2px solid #444;
  background-color: #444;
}

.alert.warning {
  background-color: #ffecb3;
  border-color: #ff8f00;
  color: #925200 !important;
}

.alert.danger {
  background-image: url(../img/main/alert-danger.svg);
  background-position: -14px calc(100% + 10px);
  background-color: #f44336;
  border-color: #f44336;
  color: #fff !important;
}

.alert.success {
  background-image: url(../img/main/alert-success.svg);
  background-position: -12px calc(100% + 10px);
  background-color: #00c853;
  border-color: #00c853;
  color: #fff !important;
}

.alert.info{
	color: #004085 !important;
    background-color: #cce5ff;
    border-color: #b8daff;
	/*color: white !important;
	background-color: #0a509b;
    border-color: #05386e;*/
	background-image: url(../img/main/alert-success.svg);
	background-position: -12px calc(100% + 10px);
}

.alert.info p{
	color: #004085 !important;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert a{
	color:unset;
	text-decoration:underline;
}

.alert p {
  color: #fff;
  font-size: 18px;
  line-height: 20px;
}

.alert.info p {
  color: #004085 !important;
}

.ui.warning {
  color: #925200;
}

.ui.danger {
  color: #f44336;
}

.ui.success {
  color: #4caf50;
}

.ui.info {
  color: #31708f;
}

.muted{
	color: #999;
}

/*
	BTN & BTN-PRIMARY
*/
.btn {
  background-color: #eee;
  border: 0;
  /*border-radius: 50px;*/
  border-radius: 2px;
  color: #444;
  font-family: Lato;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 20px;
  text-align: center;
  margin: 5px;
  display: inline-block;
}

.btn:hover {
  text-decoration: underline;
  background-color: #ddd;
}

.btn.btn-primary {
  background-color: #e2007a;
  color: #fff;
}

.btn.btn-primary:hover {
  background-color: #ad005d;
}

.btn.btn-green {
  background-color: #00ad00;
  color: #fff;
}

.btn.btn-green:hover {
  background-color: #00ad00;
}

.btn.btn-green:active {
  background-color: #00ad00;
}

.btn.btn-large {
  padding: 15px 30px;
  font-size: 17px;
}

.btn:disabled {
  background-color: #888;
  color: #ccc;
  text-decoration: none;
}

.link {
  color: #e2007a;
  text-decoration: none;
  display: inline;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

.link:hover {
  text-decoration: underline;
}

/* Tooltip */

@keyframes desc {
  from {
    opacity: 0;
    bottom: 0;
  }
  to {
    opacity: 1;
    bottom: -2.4em;
  }
}

[desc-tc],
[desc-tl],
[desc-tr] {
  position: relative;
}

[desc-tc]:not([desc-tc=""]):hover:after,
[desc-tl]:not([desc-tl=""]):hover:after,
[desc-tr]:not([desc-tr=""]):hover:after {
  white-space: nowrap;
  animation: desc 0.15s ease-out;
  position: absolute;
  background-color: #222;
  color: #fff;
  bottom: -2.4em;
  padding: 5px;
  opacity: 1;
  border-radius: 0;
  z-index: 9999;
  text-align: left;
  font-weight: normal;
  line-height: 13px;
  display: block;
  font-size: 13px;
  text-transform: none;
  font-style: normal;
}

[desc-tc]:not([desc-tc=""]):hover:after {
  left: 50%;
  transform: translateX(-50%);
  content: attr(desc-tc);
}

[desc-tl]:not([desc-tl=""]):hover:after {
  left: 0;
  content: attr(desc-tl);
}

[desc-tr]:not([desc-tr=""]):hover:after {
  right: 0;
  content: attr(desc-tr);
}

/* Clear fix */

.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

/* Grille */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%;
  align-items: start;
}
.row > * {
  float: left;
  margin: 0 1%;
  margin-bottom: 2%;
  padding: 0 !important;
}
.row.no-mb > * {
  margin-bottom: 0;
}

.row-content-center {
  justify-content: center;
}
.row-content-left {
  justify-content: left;
}
.row-content-right {
  justify-content: right;
}
.row-content-between {
  justify-content: space-between;
}
.row-content-around {
  justify-content: space-around;
}

.col-12 > p,
.col-12 > div,
.row > div.col-12 {
  flex-basis: calc(100% * 12 / 12 - 2%);
}
.col-11 > p,
.col-11 > div,
.row > div.col-11 {
  flex-basis: calc(100% * 11 / 12 - 2%);
}
.col-10 > p,
.col-10 > div,
.row > div.col-10 {
  flex-basis: calc(100% * 10 / 12 - 2%);
}
.col-9 > p,
.col-9 > div,
.row > div.col-9 {
  flex-basis: calc(100% * 9 / 12 - 2%);
}
.col-8 > p,
.col-8 > div,
.row > div.col-8 {
  flex-basis: calc(100% * 8 / 12 - 2%);
}
.col-7 > p,
.col-7 > div,
.row > div.col-7 {
  flex-basis: calc(100% * 7 / 12 - 2%);
}
.col-6 > p,
.col-6 > div,
.row > div.col-6 {
  flex-basis: calc(100% * 6 / 12 - 2%);
}
.col-5 > p,
.col-5 > div,
.row > div.col-5 {
  flex-basis: calc(100% * 5 / 12 - 2%);
}
.col-4 > p,
.col-4 > div,
.row > div.col-4 {
  flex-basis: calc(100% * 4 / 12 - 2%);
}
.col-3 > p,
.col-3 > div,
.row > div.col-3 {
  flex-basis: calc(100% * 3 / 12 - 2%);
}
.col-2 > p,
.col-2 > div,
.row > div.col-2 {
  flex-basis: calc(100% * 2 / 12 - 2%);
}
.col-1 > p,
.col-1 > div,
.row > div.col-1 {
  flex-basis: calc(100% * 1 / 12 - 2%);
}
@media only screen and (max-width: 470px) {
  .row > *:not(.xs) {
    flex-basis: 100% !important;
  }
  .order-xs-first {
    order: -1;
  }
}
