/*.preloader {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  background: rgba(0,0,0,0.6);*/
/*  z-index: 99999999;*/
/*}*/

.preloader {
  width: 100%;
  height: 100%;
}

.loading-msg {
  width: 100%;
  font-size: 0.75em;
  color: #555;
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  text-align: center;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 2px solid #f3f3f3;
  border-top: 3px solid #2489CE;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation: spin 1s infinite ease;
  animation: spin 1s infinite ease;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#loading-msg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 50px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  font-size: 18px;
}

.empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px 20px;
}

.empty p {
  font-size: 24px;
}

.tg {
  border-collapse: collapse;
  border-color: #ccc;
  border-spacing: 0;
  margin: 0px auto;
}

.tg td {
  background-color: #fff;
  border-color: rgba(0,0,0,10%);
  border-style: solid;
  border-width: 1px;
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 14px;
  overflow: hidden;
  padding: 10px 15px;
  word-break: normal;
}

.tg-head {
  background-color: #f0f0f0;
  border-color: rgba(0,0,0,10%);
  border-style: solid;
  border-width: 1px;
  color: #000;
  font-size: 22px;
  font-weight: 400;
  overflow: hidden;
  padding: 10px 5px;
  word-break: normal;
  text-align: center;
}

.tg .tg-col {
  border-color: inherit;
  text-align: left;
}

.tg-head__first,
.tg-col__first {
  width: 50px;
}
.tg .tg-col label {
  margin: 0;
}
.tg td input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
}
.tg td input[type="checkbox"]:checked {
  border: 1px solid #77CF4D;
}
.tg td input[type=checkbox]:checked:before {
  font-size: 12px;
  line-height: 18px;
  width: 18px;
  height: 18px;
  color: #77CF4D;
}

@media screen and (max-width: 767px) {
  /*.tg {*/
  /*  width: auto !important;*/
  /*}*/

  .tg col {
    width: auto !important;
  }

  .tg-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: auto 0px;
  }
  .tg-head {
    font-size: 20px;
  }
}


ul {
  margin: 0;
  padding: 0;
}

.table_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #eee;
  padding: 9px 0px 9px 22px;
  color: #000;
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
}

.head_item {
  width: 33.333%;
}

.table_list {
  font-size: 18px;
}

.table_list li {
  margin: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tg-col span + span {
  margin-left: 5px;
}

.add-word {
  background-color: #77CF4D;
}

.add-word:hover {
  cursor: pointer;
}

.added-word {
  background-color: #FFCC00;
}
/*.word_item--word > span:after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 92%;*/
/*  height: 1px;*/
/*  background-color: #000;*/
/*  left: 4px;*/
/*  bottom: 3px;*/
/*}*/

.tg-col .word_item {
  display: inline-block;
  padding: 0 8px;
  border-radius: 4px ;
}

.wordlist_table__buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-bottom: 30px;
}

.wordlist_table__buttons.fixed-btn-group {
  position: fixed;
  top: 70px;
}

.tooltip_add,
.tooltip_popup {
  background: #77CF4D;
  -webkit-box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.15);
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: .2s all ease-in;
  -o-transition: .2s all ease-in;
  transition: .2s all ease-in;
  /*position: absolute;*/
  /*visibility: hidden;*/
  /*opacity: 0;*/
}

.tooltip_add:hover:not(.tooltip__disabled) {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.tooltip_add.tooltip_add__checked {
  background-color: tomato;
}
.tooltip_popup {
  position: absolute;
  top: 50%;
  left: calc(50% - 147px);
  visibility: hidden;
  opacity: 0;
}
.tooltip_popup.tooltip_popup__open {
  visibility: visible;
  opacity: 1;
}


.btn_add {
  border: none;
  outline: none;
  background-color: transparent !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 10px 25px;
  min-width: 220px;
}
.icon_circle {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  color: #000 !important;
  background-color: #fff;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 24px !important;
}

.icon_plus {
  font-size: 24px !important;
  font-weight: 400 !important;
}

.btn_text {
  text-transform: uppercase;
  font-size: 19px !important;
  line-height: 16px;
  margin-left: 16px;
  font-weight: 500;
  color: #fff !important;
  white-space: nowrap;
}

.tooltip_add__orange {
  background: orange;
  margin-right: 25px;
}
.tooltip_add.tooltip__disabled {
  opacity: 0.5;
}

.popup_thank {
  padding: 18px 40px;
}

.close_popup {
  position: absolute;
  right: 7px;
  top: 7px;
  cursor: pointer;
}

.icon_popup {
  width: 100%;
  margin-bottom: 16px;
}

.popup_thank span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  width: 100%;
  display: inline-block;
  text-align: center;
  color: #fff !important;
}

.select_language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 21px;
  line-height: 23px;
  padding: 45px 0;
}

.start_in {
  margin-right: 30px;
}

.select select {
  line-height: 24px;
  outline: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px 21px 10px 15px;
  background-color: transparent;
  background-image: url("img/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: 95% center;
  cursor: pointer;
  width: 300px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #E5E5E5;
}

.tabs-container {
  margin-bottom: 48px;
}

.tabs-container nav ul {
  list-style: none;
  margin: 0;
  border: 1px solid #ccc;
  padding: 0 10px;
}

.tabs-container nav ul li {
  cursor: pointer;

}

.tabs-container nav ul li.active {
  border-left: 5px solid #FFCC00;
  background-color: #f5f5f5;
}

.tabs-container nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.tabs-container nav ul li {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.tabs-container nav ul li.active {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;

}

.tabs-container nav ul li.active:after {
  content: url("img/arrow.svg");
  position: absolute;
  right: 1.5em;
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.tabs-container nav ul li:not(.active) {
  position: absolute;
  top: -999em;
}


.tabs-container nav ul.expanded li.active:after {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}


.tabs-container nav ul.expanded li:not(.active) {
  position: relative;
  top: auto;
}

.tabs li a {
  width: 100%;
  font-family: 'Futura PT' !important;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  z-index: 2;
  padding: 34px 40px;
}

.tab-content-wrapper {
  position: relative;
  min-height: 300px;
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: inherit;
}

.tab_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.tab_item {
  width: 25%;
  padding: 0 20px;
  position: relative;
  margin-bottom: 66px;
}

.tab_card {
  border: 1px solid #E5E5E5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.tab_card__content {
  padding: 24px 16px 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tab_card__img {
  width: 100%;
}

.tab-card__button {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px 16px;
}

.tab_date {
  font-size: 18px;
  line-height: 21px;
  margin-top: 5px;
  position: absolute;
  text-align: right;
  width: calc(100% - 40px);
}

.popup_card_date {
  position: absolute;
  bottom: -30px;
  right: 0;
}

.popup_card_date span {
  color: #CCCCCC;
  line-height: 25px;
}

.the_word {
  width: 100%;
  position: relative;
  margin: 27px auto 12px;
  font-size: 21px;
  line-height: 23px;
}

.the_word,
.the_word span {
  font-weight: 400;
}

.card .the_word p {
  font-size: 28px !important;
  line-height: 32px !important;
  color: #000000;
  white-space: pre-wrap;
}

.tab_card__word {
  text-align: center;
}

.tab_card .the_word span {
  white-space: pre-wrap;
}

.the_transcriptions {
  font-size: 18px;
  line-height: 20px;
  color: #AD5DFC;
  margin: 0 auto 22px;
}

.the_transcriptions, .the_transcriptions span {
  font-weight: 400;
}

.start_voice {
  background: #FFCC00;
  width: 32px;
  height: 32px;
  outline: none;
  border: none;
  border-radius: 50px;
  margin-right: auto;
  padding: 0;
  cursor: initial;
}

.start_voice svg {
  margin-top: 8px;
}

.background_popup.show {
  pointer-events: all;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

.popup_card_wrapper {
  width: 100%;
  height: 600px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.extra-word-info {
  position: absolute;
  top: -19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: calc(100% - 32px);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 100%;
}

.word-tooltip {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  padding: 12px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 10px;
  width: 315px;
}

.background_popup {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: .3s all linear;
  -o-transition: .3s all linear;
  transition: .3s all linear;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modalopen {
  overflow: hidden;
}

.background_popup.show .popup_card {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.popup_card {
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 52px 32px 32px;
  position: absolute;
  width: 100%;
  max-width: 867px;
  z-index: 111;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  -ms-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
  -webkit-transition: .3s all linear;
  -o-transition: .3s all linear;
  transition: .3s all linear;
  left: 50%;
  background: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popup_card__light_yellow {
  background: #faf5de;
}

.close_card {
  cursor: pointer;
  right: 24px;
  top: 24px;
  position: absolute;
  z-index: 10;
}

.card_btn--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 45px -7px 0;
}

.card_btn--box-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.deck {
  width: 315px;
  height: 500px;
  position: relative;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.deck--mini {
  height: 350px !important;
}

.card {
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
  border-radius: 10px;
}

.face {
  position: absolute;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #f2f2f2;
}

.back {
  /*z-index: -1;*/
  z-index: 1;
  display: block;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  height: 100%;
  background: #faf5de;
}

.botprice {
  height: 100%;
}

.back .card_btn--box {
  margin-top: 60px;
}

.back .flip {
  margin: 30px auto 0;
}

.back:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.front {
  z-index: 1;
}

.front, .back {
  -webkit-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
  text-align: center;
  width: 100%;
}

.flipped {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.tooltip_icon {
  background: #FFCC00;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.btn {
  outline: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.btn_cards {
  margin: 0 7px;
  width: 154px;
  height: 37px;
  font-size: 15px;
  line-height: 17px;
  text-transform: uppercase;
  color: #fff;
  background: #AD5DFC;
  border-radius: 0;
}

.btn_replay {
  background: #F16C59;
}

.rad-button {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background: #FFCC00;
  margin-top: 30px;
}

.btn_mute {
  position: absolute;
  background: #FFCC00;
  width: 32px;
  height: 32px;
  outline: none;
  border: none;
  border-radius: 50px;
  left: 32px;
  bottom: 32px;
  padding: 0;
  line-height: 100%;
}

.popup_success {
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 52px 32px 32px;
  position: absolute;
  width: 100%;
  max-width: 867px;
  z-index: 111;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .3s all linear;
  -o-transition: .3s all linear;
  transition: .3s all linear;
  left: 50%;
  background: #F16C59;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popup_card_success {
  height: 455px;
}

.purple .popup_success,
.purple_delete .popup_success {
  background: #AD5DFC;
}

.close_popup--success {
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 24px;
}

.circle_success {
  width: 137px;
  height: 137px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.success_text {
  margin: 28px 0 45px;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.btn_back--success {
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  text-transform: uppercase;
  color: #000000;
  width: 193px;
  height: 37px;
  background-color: #fff;

}

@media all and (min-width: 768px) {

  .tabs-container nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    padding: 0;
  }

  .tabs-container nav ul li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 31%;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    /*padding: 34px 40px;*/
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
  }

  .tabs-container nav ul li span {
    margin-left: 40px;
  }

  .tabs-container nav ul li:not(.active) {
    position: relative;
    top: auto;
  }

  .tabs-container nav ul li.active {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .tabs-container nav ul li.active:after {
    display: none;
  }
}

@media (max-width: 1366px) {
  .tabs-container nav ul li {
    width: 32%;
  }

  .tab_flex {
    margin: 0 -10px;
  }

  .tab_item {
    padding: 0 10px;
  }

  .popup_card {
    max-width: 767px;
  }

  .popup_success {
    max-width: 767px;
  }

  .tab_date {
    width: calc(100% - 20px);
  }
}

@media (max-width: 959px) {
  .tabs li a {
    padding: 34px 23px;
  }

  .tabs-container nav ul li span {
    margin-left: 16px;
  }

  .extra-word-info {
    left: initial;
    width: 100%;
    position: absolute;
    top: -24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .tooltip_icon {
    margin-left: auto;
  }

  .word-tooltip {
    margin-left: 0;
  }

  .popup_card {
    max-width: 600px;
  }

  .popup_success {
    max-width: 600px;
  }
}

@media (max-width: 850px) {
  .tab_item {
    width: 33.333%;
  }

  .tab_item img {
    width: 100%;
  }

  .popup_card {
    max-width: 479px;
  }

  .popup_success {
    max-width: 479px;
  }

}

@media (max-width: 767px) {
  .tabs-container nav ul {
    position: relative;
    padding: 0;
  }

  .tabs-container nav ul li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .popup_card {
    max-width: 479px;
  }

  .popup_success {
    max-width: 479px;
  }
  /*.wordlist_table {*/
  /*  padding-left: 20px;*/
  /*  padding-right: 20px;*/
  /*}*/
  .wordlist_table__buttons {
    padding-bottom: 25px;
  }
}

@media (max-width: 599px) {
  .select_language {
    padding: 32px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .select select {
    background-position: 89% center;
    width: 200px;
  }

  .tab_flex {
    margin: 0;
  }

  .tab_item {
    padding: 0;
    width: 100%;
    margin-bottom: 48px;
  }

  .tab_item img {
    display: none;
  }

  .tab_card__content {
    padding: 40px 24px;
  }

  .tab-card__button {
    bottom: unset;
    left: unset;
    right: 16px;
    top: calc(50% - 21px);
    padding: 10px;
  }

  .tab_card__word {
    margin: 0 auto 8px 0;
    width: 80%;
    text-align: left;
  }

  .tab_card__transcription {
    margin: 0 auto 0 0;
    width: 80%;
  }

  .tab_date {
    font-size: 16px;
    line-height: 18px;
    width: 100%;
  }

  .popup_card {
    width: 320px;
    padding: 52px 24px;
  }

  .card_btn--box {
    margin: 16px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .btn_cards {
    margin: 12px auto;
  }

  .card img {
    width: 100%;
  }

  .rad-button {
    margin-top: 10px;
  }

  .front, .back {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .card img {
    width: 200px;
  }

  .deck {
    height: 475px;
  }

  .tooltip_icon {
    top: -15px;
    width: 24px;
    height: 24px;
    right: -25px;
  }

  .tooltip_icon svg {
    height: 14px;
  }

  .btn_mute {
    bottom: 40px;
  }

  .botprice {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }

  .back .card_btn--box {
    margin-top: auto;
  }

  .popup_success {
    width: 320px;
  }

  .popup_card_success {
    height: 320px;
  }

  .circle_success {
    width: 80px;
    height: 80px;
  }

  .circle_success svg {
    height: 31px;
  }

  .success_text {
    margin: 24px 0 30px;
    font-size: 21px;
    line-height: 24px;
  }

  .word-tooltip {
    width: 100%;
  }

  .tooltip_icon {
    position: relative;
    margin-left: calc(50% + 50px);
    top: 0;
  }

  .word-tooltip {
    margin-top: 3px;
    margin-left: 0;
  }
}

.dictionary-page-content {
  margin-bottom: 100px;
}

.dictionary-page-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.dictionary-page-cards__item {
  padding: 16px 0;
}

.page-card {
  position: relative;
  background: #F5F5F5;
  -webkit-box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.15);
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.15);
}

.page-cart__link {
  font-weight: 500;
  font-size: 28px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-style: normal;
  line-height: 32px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 64px;
}

.page-cart__link svg {
  margin-right: 16px;
}

.page-card a {
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.page-card a:hover {
  background-color: #fc0;
}

@media (min-width: 768px) {
  .dictionary-page-cards {
    margin: 0 -15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .dictionary-page-cards__item {
    padding: 0 15px;
    width: 33.333%;
  }

  .page-cart__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 30px;
    line-height: 43px;
    padding: 30px;
    min-height: 300px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page-cart__link svg {
    width: 80px;
    height: 80px;
    margin-bottom: 40px;
    margin-right: 0;
  }

  .page-card {
    height: auto;
  }
}

@media (min-width: 600px) {
  .tab_card--mini {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .tab_card--mini .tab_card__content {
    padding: 24px 16px 56px;
  }

  .tab_card--mini .tab-card__button {
    padding: 10px;
  }
}

@media (min-width: 1024px) {
  .page-cart__link {
    font-size: 38px;
  }
}

.card-nav {
  position: absolute;
  top: calc(50% - 20px);
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.card-nav span {
  display: inline-block;
  height: 100%;
  width: 100%;
  font-size: 60px;
  line-height: 45px;
  font-weight: 300;
}

button.card-nav:disabled,
button.card-nav:disabled:hover {
  background-color: rgba(0, 0, 0, 60%);
}

.prev-item {
  left: -10%;
}

.next-item {
  right: -10%;
}

@media (max-width: 960px) {
  .prev-item {
    left: -12%;
  }

  .next-item {
    right: -12%;
  }
}

@media (max-width: 767px) {
  .card-nav {
    width: 50px;
    height: 50px;
  }

  .card-nav span {
    line-height: 35px;
  }
}

@media (max-width: 599px) {
  .card-nav {
    width: 45px;
    height: 45px;
  }

  .prev-item {
    left: -18px;
  }

  .next-item {
    right: -18px;
  }

  .card-nav span {
    line-height: 30px;
  }
  .wordlist_table__buttons {
    position: fixed;
    bottom: 50px;
    left: 0;
    right: 0;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding-bottom: 0;
  }
  .btn_add {
    padding: 10px 20px;
    max-width: 100%;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .icon_circle {
    width: 20px;
    height: 20px;
    line-height: 20px !important;
    font-size: 14px !important;
  }
  .btn_text {
    font-size: 13px !important;
  }
  .tooltip_add__orange {
    margin-right: inherit;
  }
}