/*Akrobat-300*/
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat-Light.woff2") format("woff2"),
    url("../fonts/Akrobat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/*Akrobat-600*/
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat-SemiBold.woff2") format("woff2"),
    url("../fonts/Akrobat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/*Arial Narrow*/
@font-face {
  font-family: "Arial Narrow";
  src: url("../fonts/ArialNarrow.woff2") format("woff2"),
    url("../fonts/ArialNarrow.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*******/
/*******/
html {
  box-sizing: border-box;
  background-color: #003b51;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  outline: none;
}

body {
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

  position: relative;
  min-width: 320px;
  margin: 0;

  font-family: "Akrobat", Arial, Helvetica, sans-serif;
  font-weight: 300;
  background-color: #003b51;
  background-image: url("../img/bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  direction: ltr;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.page-logo {
  width: 100px;
  margin: 0 auto;
}

/*******/
/*******/
.hidden {
  /*to remove links from phone numbers in Moz */
  /*also add: aria-hidden="true"*/
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  opacity: 0;
}

/* .wrap {
  height: 100vh;
  height: var(--vh, 100vh);
} */

.content {
  /* outline: 1px dashed yellow; */

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  width: 600px;
  height: 100%;
  margin: 0 auto;
  padding-top: 20px;
  /* padding-bottom: 60px; */

  text-align: center;

  will-change: opacity;
  opacity: 0;
  animation: fadeIn 0.5s 0.5s both;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

.content-inner {
  /* background: rgba(0, 0, 0, 0.25); */
  flex-grow: 1;
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.wrap-content-top {
  /* outline: 3px dashed green; */

  flex-shrink: 1;
  margin-bottom: 20px;
}
.price{
  color: #fff;
}

.top_text {
  font-family: "Akrobat", Arial, Helvetica, sans-serif;
  font-size: 35px;
  line-height: 1.1em;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.top_text2 {
  margin-bottom: 10px;
  font-family: "Akrobat", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1em;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.wheel_box {
  /* outline: 3px dashed #6d3297; */

  position: relative;
  flex-grow: 1;
  margin-bottom: 15px;
  overflow: hidden;
}

.main-img {
  width: 53%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;

  will-change: transform;

  /* animation: rotate 45s linear infinite; */
}

/* @keyframes rotate {
  to {
    transform: rotate(360deg);
  }
} */

.button_bg {
  position: absolute;
  width: 20%;
  height: 20%;
  width: calc((var(--minSizeImg) * 0.275));
  height: calc((var(--minSizeImg) * 0.275));
  /* width: calc((var(--minSizeImg) * 0.18));
  height: calc((var(--minSizeImg) * 0.18)); */
  top: 50%;
  left: 50%;
  transform: translate(-48.5%, -50.5%);

  display: flex;
  justify-content: center;
  align-items: center;

  border: 2px solid #ffffff;
  border-radius: 50%;
  background-color: #ffa200;

  /* box-shadow: 0px 0px 30px 30px rgba(0, 59, 81, 1); */

  cursor: pointer;

  will-change: opacity;
  opacity: 0;
  animation: button_bgAnim 2s infinite, button_bgOpacity 0.5s 0.5s both;
  /* animation: button_bgAnim 2s infinite; */
}

@keyframes button_bgAnim {
  0% {
    background: #ffa200;
  }

  50% {
    background: #ce6700;
  }

  100% {
    background: #ffa200;
  }
}

@keyframes button_bgOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.button_bg__text {
  font-size: 34px;
  font-size: calc(var(--minSizeImg) * 0.07);
  /* font-size: calc(var(--minSizeImg) * 0.045); */
  line-height: 1em;
  font-weight: 600;
  text-align: center;
  color: white;
}

.button {
  font-family: "Akrobat", Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.11px;
  color: #ffffff;
}

.wrap-content-bottom {
  /* background: rgba(122, 18, 66, 0.45); */
  flex-shrink: 1;
  /* margin-top: 20px; */
  margin-bottom: 15px;
}

.zodiak_row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 520px;
  margin: 40px auto;
}

.zodiak_box .top {
  color: #ffffff;
  font-size: 26px;
  font-weight: bold;
  line-height: 28.35px;
  margin-bottom: 15px;
}

.zodiak_box .bottom {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  line-height: 18.12px;
}

.description_row {
  /* display: flex; */
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: none;

  /* max-width: 600px;
  min-height: 250px; */
  max-width: 412px;
  min-height: 200px;
  margin: 0 auto;
  margin-bottom: 15px;
  color: #fff;

  will-change: opacity;
  opacity: 0;
}

.description_row.show {
  display: flex;
}

.description_box {
  background: #008ba8;
  padding: 20px 15px 40px 15px;
  /* max-width: 365px; */
  max-width: 260px;
  position: relative;
  margin-bottom: -15px;
  -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.49);
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.49);
}

.desc_title {
  width: auto;
  text-align: left;
  margin-bottom: 10px;
  font-size: 20px;
}

.description {
  text-align: justify;
  font-size: 12px;
}

.roll {
  background: #fff;
  height: 33px;
  width: 100%;
  margin-left: -16px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  position: relative;
  -webkit-box-shadow: 0px -1px 10px 0px rgba(0, 0, 0, 0.26);
  box-shadow: 0px -1px 10px 0px rgba(0, 0, 0, 0.26);
}

.roll:after {
  content: "";
  position: absolute;
  right: -16px;
  top: 0;
  display: block;
  width: 33px;
  height: 16px;
  background: #003b51;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.49);
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.49);
}

.roll:before {
  content: "";
  position: absolute;
  right: -16px;
  bottom: 0;
  display: block;
  width: 33px;
  height: 17px;
  background: #00707b;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.49);
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.49);
}

.planeta_box>img {
  /* max-width: 206px;
  max-height: 206px; */
  max-width: 100px;
  max-height: 100px;
}

.name_planet {
  /* font-size: 27px; */
  font-size: 20px;
  display: inline-block;
}

.second_button {
  display: block;
  width: 340px;
  margin: 0 auto;
  /* margin-top: 25px; */
  padding: 17px 0 17px;

  font-family: "Akrobat", Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1em;
  font-weight: 600;
  color: #fff;

  background-color: rgba(250, 250, 250, 0.5);
  border: 1px solid #fff;
  border-radius: 8px;

  cursor: pointer;
  margin-bottom: 10px;
}

@keyframes show {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

/* @keyframes show {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }

  16% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
} */

.show {
  animation-name: show;
  animation-duration: 2.5s;
  /* animation-fill-mode: forwards; */
  animation-fill-mode: both;
  animation-timing-function: linear;
}

.footer {
  /* outline: 1px dashed wheat; */

  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10px;
  background-color: #003b51;
}

.footer__text {
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 0.9em;
  letter-spacing: -0.14px;
  color: #ffffff;
  text-align: center;
  opacity: 0.6;
}

.footer__link {
  /* font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 5px;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: -0.14px;
  color: #ffffff;
  opacity: 0.6; */
  text-decoration-line: underline;
}

.message {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.message__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 280px;
  padding: 15px 36px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 9px;

  will-change: transform;
  animation-name: fadeInDown;
  animation-duration: 0.8s;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.message__title {
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.15;
  text-align: center;
}

.message__text {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 400;
  text-align: center;
}

.message__close {
  position: absolute;
  top: 7px;
  right: 10px;
  width: 30px;
  height: 30px;
  font-size: 0;
  color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.message__close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #000;
  transform: translateX(-50%) rotate(-45deg);
}

.message__close::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #000;
  transform: translateX(-50%) rotate(45deg);
}

.message__close:hover.message__close::before,
.message__close:hover.message__close::after {
  background-color: #222;
}

.showMessage {
  display: flex;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    /* transform: translate3d(0, -100%, 0); */
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 1;
    /* transform: translate3d(0, 0, 0); */
  }
}

/*** end #message****/
@media screen and (orientation: landscape) and (max-width: 1025px) and (max-height: 800px) {
  .main-img {
    width: 40%;
  }

}

@media screen and (max-width: 375px) {
  .message__content {
    width: 330px;
  }

  .message__title {
    font-size: 24px;
  }

  .message__text {
    font-size: 22px;
  }
}

@media screen and (max-width: 320px) {
  .message__content {
    width: 280px;
  }

  .message__title {
    font-size: 20px;
  }

  .message__text {
    font-size: 18px;
  }
}

@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 950px) and (max-height: 500px) {
  .message__content {
    width: 258px;
    height: 200px;
  }

  .message__title {
    font-size: 18px;
  }

  .message__text {
    font-size: 16px;
  }
}

/*********/
/*********/
/*Media Requests*/

/*Media requests*/
/*Windows 1440*900 */

/*Windows 1280*1024*/
@media screen and (max-width: 1280px) and (max-height: 914px) {
  .description_row.show {
    display: flex;
  }
}

/*Windows 1280*800*/
@media screen and (max-width: 1280px) and (max-height: 690px) {
  .description_row.show {
    display: none;
  }
}

@media screen and (min-width: 1025px) and (max-height: 800px) {

  /*desktop - разные НЕ fullHD (не 1920*1080)*/
  /*с масштабом >100%*/
  .description_row.show {
    display: none;
  }
}

/*Ipad Pro 11 2018 - album*/
@media screen and (max-width: 1195px) and (max-height: 791px) {
  .description_row.show {
    display: none;
  }
}

/*air 2, Ipad Pro 9.7 2016, air, ipad 4 - Album - Chrome*/
@media screen and (max-width: 1025px) and (max-height: 653px) {
  .description_row.show {
    display: none;
  }

  .zodiak_box .top {
    font-size: 20px;
  }

  .zodiak_box .bottom,
  .description {
    font-size: 15px;
  }

  .desc_title {
    font-size: 21px;
  }

  .planeta_box>img {
    max-width: 170px;
    max-height: 170px;
  }

  .planeta_box {
    max-width: 170px;
  }

  .name_planet {
    font-size: 22px;
  }
}

/*Windows 1024*768*/
@media screen and (max-width: 1024px) and (max-height: 657px) {
  .description_row.show {
    display: none;
  }

  .zodiak_box .top {
    font-size: 20px;
  }

  .zodiak_box .bottom,
  .description {
    font-size: 15px;
  }

  .desc_title {
    font-size: 21px;
  }

  .planeta_box>img {
    max-width: 170px;
    max-height: 170px;
  }

  .planeta_box {
    max-width: 170px;
  }

  .name_planet {
    font-size: 22px;
  }
}

/*Nexus 7 - Album - Mozilla*/
@media screen and (max-width: 961px) and (max-height: 424px) {
  .top_text {
    font-size: 28px;
  }

  .zodiak_box .top {
    font-size: 20px;
  }

  .zodiak_box .bottom,
  .description {
    font-size: 15px;
  }

  .desc_title {
    font-size: 21px;
  }

  .planeta_box>img {
    max-width: 170px;
    max-height: 170px;
  }

  .planeta_box {
    max-width: 170px;
  }

  .name_planet {
    font-size: 22px;
  }
}

/*Iphone XS max, Iphone XR - Album - Safary*/
@media screen and (max-width: 809px) and (max-height: 415px) {
  .top_text {
    font-size: 24px;
  }

  .zodiak_box .top {
    font-size: 20px;
  }

  .zodiak_box .bottom,
  .description {
    font-size: 15px;
  }

  .desc_title {
    font-size: 21px;
  }

  .planeta_box>img {
    max-width: 170px;
    max-height: 170px;
  }

  .planeta_box {
    max-width: 170px;
  }

  .name_planet {
    font-size: 22px;
  }
}

/*Ipad 4. Air - Portrait - Safary*/
@media screen and (max-width: 769px) and (max-height: 928px) {
  .description_row.show {
    display: flex;
  }
}

/*Nexus 7 - portrait*/
@media screen and (max-width: 601px) and (max-height: 888px) {
  .description_row {
    max-width: 500px;
  }

  .planeta_box>img {
    max-width: 170px;
    max-height: 170px;
  }

  .desc_title {
    font-size: 23px;
  }

  .zodiak_box .top {
    color: #ffffff;
    font-size: 23px;
    font-weight: bold;
    line-height: 24.35px;
    margin-bottom: 5px;
  }

  .description_box {
    padding: 5px 10px 25px 10px;
  }

  .description_row {
    min-height: 210px;
  }
}

/*Iphone Xs max, Iphone XR - Port - Safary*/
@media screen and (max-width: 415px) and (max-height: 832px) {
  .main-img {
    width: 60%;
  }

  .zodiak_box .top {
    font-size: 19px;
  }

  .zodiak_box .bottom,
  .description {
    font-size: 12px;
  }

  .description_row {
    max-width: 350px;
    min-height: 175px;
  }

  .description_row.show {
    display: flex;
  }

  .planeta_box>img {
    max-width: 120px;
    max-height: 120px;
  }

  .planeta_box {
    max-width: 120px;
  }

  .description_box {
    max-width: 205px;
  }

  .desc_title {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .name_planet {
    font-size: 16px;
  }

  .roll {
    height: 20px;
    margin-left: -8px;
  }

  .roll:before {
    width: 20px;
    height: 10px;
    margin-right: 8px;
  }

  .roll:after {
    width: 20px;
    height: 10px;
    margin-right: 8px;
  }

  .zodiak_box .top {
    margin-bottom: 0;
  }
}

/*Iphone Xs max, Iphone XR - Port - */
@media screen and (max-width: 415px) and (max-height: 725px) {

  /* .description_row.show {
    max-width: 350px;
  } */
  .description_row.show {
    display: none;
  }
}

@media screen and (min-width: 408px) and (max-width: 415px) and (max-height: 640px) {

  /*mob - vert*/
  /*Pixel*/
  /*8+*/
  .main-img {
    width: 60%;
  }
}

/*Iphone 6s ,Iphone 8 - Port*/
@media screen and (max-width: 376px) and (max-height: 554px) {
  .description_row.show {
    display: none;
  }

  .main-img {
    width: 31%;
  }

  .price {
    font-size: 14px;
  }
}

/*Samsung Galaxy A8, S8, S9, S6, S7 - Port - Chrome*/
@media screen and (max-width: 361px) and (max-height: 668px) {
  .description_row.show {
    max-width: 334px;
  }
}

/*Lg G5, - Port*/
@media screen and (max-width: 361px) and (max-height: 574px) {
  .description_row.show {
    display: none;
  }
}

/*MotorolaX 2nd, Sony XPeria Z5 - Port*/
@media screen and (max-width: 361px) and (max-height: 513px) {
  .description_row.show {
    display: none;
  }
}

/*undefined*/
@media screen and (max-width: 321px) and (max-height: 504px) {
  .zodiak_box .top {
    font-size: 16px;
  }

  .planeta_box>img {
    max-width: 100px;
    max-height: 100px;
  }

  .planeta_box {
    max-width: 100px;
  }

  .description_box {
    max-width: 170px;
  }
}

/************/
/***added****/

@media screen and (orientation: landscape) and (max-height: 700px) {

  /*desktop - разные не высокие */
  .description_row.show {
    display: none;
  }

  .second_button {
    margin-top: 0;
  }
}

@media screen and (max-width: 500px) and (max-height: 950px) {

  /*mob - верт*/
  /*all*/
  .content {
    width: 350px;
    padding-top: 5px;
  }

  .top_text {
    font-size: 30px;
  }

  .top_text2 {
    font-size: 18px;
  }

  .button_bg {
    width: calc((var(--minSizeImg) * 0.29));
    height: calc((var(--minSizeImg) * 0.29));
  }

  .description_row {
    min-height: 185px;
  }

  .planeta_box {
    margin-left: 10px;
  }

  .planeta_box>img {
    max-width: 125px;
    max-height: 125px;
  }

  .roll {
    height: 25px;
  }

  .roll::before,
  .roll:after {
    width: 25px;
    height: 13px;
  }

  .button_bg__text {
    font-size: 28px;
    font-size: calc(var(--minSizeImg) * 0.06);
  }

  .second_button {
    margin-top: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 375px) and (max-height: 950px) {
  /*mob - верт*/
  /*all*/

  .content {
    width: 300px;
  }

  .top_text {
    font-size: 25px;
  }

  .top_text2 {
    font-size: 15px;
  }

  .second_button {
    width: 220px;
    font-size: 16px;
  }
}

@media screen and (max-width: 320px) and (max-height: 568px) {
  .wrap-content-top {
    margin-bottom: 10px;
  }

  .top_text {
    font-size: 24px;
  }

  .top_text2 {
    font-size: 16px;
    margin-top: 5px;
  }

  .main-img {
    width: 58%;
  }

  .wheel_box {
    margin-bottom: 2px;
  }

  .second_button {
    max-width: 280px;
    width: 280px;
    font-size: 16px;
    margin-top: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .wrap-content-bottom {
    margin-bottom: 5px;
  }

  .footer__text {
    font-size: 12px;
  }
}

@media screen and (orientation: landscape) and (min-width: 500px) and (max-width: 920px) and (max-height: 500px) {

  /*mob горизонт*/
  /*all*/
  .wrap {
    height: auto;
  }

  .content {
    display: block;
    width: 300px;
    margin-bottom: 5px;
    padding: 0;
  }

  .content-inner {
    display: flex;
    flex-direction: column;
    /* height: 100vh;
    height: var(--vh, 100vh); */

    padding-top: 5px;
    padding-bottom: 10px;
  }

  .wrap-content-top {
    margin-bottom: 10px;
  }

  .wheel_box {
    flex-grow: 0;
    margin-bottom: 5px;

  }

  .wrap-content-bottom {
    margin-top: 0;
    margin-bottom: 7px;
  }

  .top_text {
    margin-bottom: 5px;
    font-size: 22px;
    line-height: 1em;
  }

  .top_text2,
  .price {
    margin-top: 0;
    font-size: 13px;
    line-height: 1em;
  }

  .description_row {
    min-height: 225px;
  }

  .description_row.show {
    display: none;
  }

  .description_box {
    padding-top: 5px;
    padding-bottom: 20px;
  }

  .desc_title {
    margin-bottom: 5px;
    font-size: 18px;
  }

  .description {
    font-size: 14px;
  }

  .planeta_box {
    margin-left: 5px;
  }

  .planeta_box>img {
    max-width: 100px;
    max-height: 100px;
  }

  .name_planet {
    font-size: 18px;
  }

  .second_button {
    width: 220px;
    margin-top: 2px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 14px;
  }

  .footer {
    margin-top: 0;
    font-size: 13px;
  }
}

@media screen and (orientation: landscape) and (max-width: 568px) and (max-height: 320px) {

  /*mob горизонт*/
  /*SE*/
  .top_text {
    margin-bottom: 3px;
    font-size: 16px;
  }

  .top_text2 {
    font-size: 10px;
  }
}

@media screen and (orientation: landscape) and (max-width: 568px) and (max-height: 236px) {
  /*SE*/

  .button {
    font-size: 12px;
  }
}

/********/
/* .description_row {
  outline: 5px dotted coral;
} */

@media screen and (max-width: 376px) {
  .second_button {
    font-size: 14px;
  }
}

@media screen and (max-width: 350px) {
  .second_button {
    font-size: 14px;
  }

  .main-img {
    width: 49%;
  }
}

@media screen and (min-width: 480px) and (max-width: 950px) and (max-height: 500px) and (orientation: landscape) {
  .main-img {
    width: 30%;
  }
}

@media screen and (min-width: 480px) and (max-width: 950px) and (max-height: 350px) and (orientation: landscape) {
  .main-img {
    width: 19%;
  }

  .footer__text {
    font-size: 12px;
    line-height: 1;
  }

  .price,
  .top_text2 {
    margin-top: 0;
    font-size: 11px;
    line-height: 1em;
  }
}