.fr-text-gray {
  color: #AAA !important;
}
.fr-text-red {
  color: #F44336 !important;
}
.fr-text-blue {
  color: #2196F3 !important;
}
.fr-text-green {
  color: #4CAF50 !important;
}
.fr-text-bordered {
  border-top: solid 1px #222;
  border-bottom: solid 1px #222;
  padding: 10px 0;
}
.fr-text-spaced {
  letter-spacing: 1px;
}
.fr-text-uppercase {
  text-transform: uppercase;
}

img.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}
img.fr-dib.fr-fil {
  margin-left: 0;
}
img.fr-dib.fr-fir {
  margin-right: 0;
}
img.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}
img.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}
img.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}
img.fr-rounded {
  border-radius: 7px;
}
img.fr-bordered {
  border: 1px solid #ddd;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
img.fr-padded {
  padding: 5px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

img.fr-shadows {
  box-shadow: rgba(0, 0, 0, 0.29) 0px 1px 6px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.fr-video {
  text-align: center;
  position: relative;
}
.fr-video > * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 100%;
  border: none;
}
.fr-video.fr-dvb {
  display: block;
  clear: both;
}
.fr-video.fr-dvb.fr-fvl {
  text-align: left;
}
.fr-video.fr-dvb.fr-fvr {
  text-align: right;
}
.fr-video.fr-dvi {
  display: inline-block;
}
.fr-video.fr-dvi.fr-fvl {
  float: left;
}
.fr-video.fr-dvi.fr-fvr {
  float: right;
}
a.fr-strong {
  font-weight: 700;
}

table.fr-solid-borders td,
table.fr-solid-borders th {
  border: 1px solid #dddddd !important;
}

table.fr-dashed-borders td,
table.fr-dashed-borders th {
  border: 1px dashed #dddddd !important;
}

table.fr-alternate-rows tbody tr:nth-child(2n) {
  background: #f5f5f5;
}

table td.fr-red,
table th.fr-red {
  border: 1px double #F44336 !important;
}
table td.fr-blue,
table th.fr-blue {
  border: 1px double #2196F3 !important;
}
table td.fr-green,
table th.fr-green {
  border: 1px double #4CAF50 !important;
}
table td.fr-thick,
table th.fr-thick {
  border-width: 2px;
}.pretimer {
    margin-top: 20px;
    display: block;
}

.lt {
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

@media screen and (min-width: 1200px) {
    .lt {
        grid-auto-flow: column;
        gap: 98px;
        height: 116px;
        padding-inline: 70px;
    }
}

.countdown_title {
    display: grid;
    gap: 20px;
    grid-auto-flow: column;
    align-items: center;
    justify-content: start;
    margin: 0;
    font-weight: 700;
}

.countdown_title .icon {
    color: var(--color--red);
    display: none;
}

@media screen and (min-width: 1200px) {
    .countdown_title {
        font-size: 26px;
    }

    .countdown_title .icon {
        display: block;
    }
}

.rt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: end;
    justify-self: center;
    align-items: center;
    width: max-content;
    gap: 9px;
}

@media screen and (min-width: 1200px) {
    .rt {
        gap: 41px;
    }
}

.countdown_wrp {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.countdown_wrp li {
    position: relative;
    display: grid;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    width: 60px;
}

@media screen and (min-width: 1200px) {
    .countdown_wrp li {
        font-size: 48px;
    }
}

.value {
    position: relative;
    font-weight: 700;
    justify-self: center;
}

.countdown_wrp li:not(:first-child)::before {
    position: absolute;
    top: 0;
    left: -9px;
    color: var(--color--red);
    content: ":";
}

@media screen and (min-width: 1200px) {
    .countdown_wrp li:not(.days)::before {
        left: -26px;
    }
}

.unit {
    color: var(--color--gray-200);
    justify-self: center;
    transform: translateY(-7px);
    font-size: 14px;
}
