@charset "UTF-8";
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name: user_mypage.scss

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	共通使用変数定義
2.	ブラウザデフォルトスタイルリセット
3.	HTMLタグ
4.	container
5.	共通部分
6.	header
7.	content
8.	main
9.	sub
10.	footer
11.	キーカラー設定
12.	ページ別個別設定

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
12.	ページ別個別設定
----------------------------------------------------------------------*/
.main__container {
  display: flex;
  justify-content: space-between;
  width: 1050px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 1200px) {
  .main__container {
    width: 950px;
  }
}
@media screen and (max-width: 768px) {
  .main__container {
    flex-wrap: wrap;
    width: auto;
    margin-bottom: 8%;
  }
}
.main__left, .main__right {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 250px;
  /*overflow: hidden;*/
}
@media screen and (max-width: 768px) {
  .main__left, .main__right {
    width: 100%;
    margin: 0 3%;
  }
}
.main__left .box__title, 
.main__right .box__title {
  padding: 8px 10px 8px 13px;
  background: #2F1F8A;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}
.box__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*margin-bottom: 30px;*/
  padding: 10px 0 10px 22px;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}
.main__left .box__inner, 
.main__right .box__inner {
  padding: 15px;
}
.main__left {
  border: 1px solid #1F2F9E;
}
@media screen and (max-width: 768px) {
  .main__left {
    order: 2;
    margin-bottom: 5%;
  }
}
.main__left__item {
  font-size: 12px;
}
.main__left__item.-ticket {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 8px solid rgba(192, 176, 209, 0.2);
  text-align: right;
}
.main__left__item.-ticket a {
  color: #1D3994;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .main__left__item dl {
    display: flex;
    justify-content: space-between;
  }
}
.main__left__item:not(:last-child) {
  margin-bottom: 10px;
}
.main__left__item.-flex > dl {
  display: flex;
  justify-content: space-between;
}
.main__left__item.-flex > dl dt {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .main__left__item.-flex > dl {
    display: block;
  }
}
.main__left__item.-mgb {
  margin-bottom: 25px;
}
.main__left__item__term {
  position: relative;
  margin-bottom: 5px;
  padding-left: 8px;
  font-weight: bold;
}
.main__left__item__term:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  background: #F39D47;
}
.main__left__item__term.-clock {
  color: #007EBE;
  cursor: pointer;
}
.main__left__item__description {
  color: #1D3994;
}
@media screen and (max-width: 768px) {
  .main__left__item__description {
    text-align: right;
  }
}
.main__left__item__description:not(:last-of-type) {
  margin-bottom: 3px;
}
.main__left__item__description a {
  color: #1D3994;
  text-decoration: underline;
}
.main__left__item__description em {
  color: #F7803E;
  font-weight: bold;
  text-decoration: underline;
}
.main__left__item.-clock {
  position: relative;
}
.main__left__item.-link {
  text-align: right;
}
.main__left__item.-link a {
  font-size: 11px;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .main__right {
    order: 3;
  }
}
.main__right__list:first-child {
  margin-bottom: 30px;
}
.main__right__item {
  margin-bottom: 10px;
  font-size: 12px;
}
.main__right__item.-flex dl {
  display: flex;
  justify-content: space-between;
}
.main__right__item.-mgb {
  margin-bottom: 30px;
}
.main__right__item__term {
  margin-bottom: 3px;
}
.main__right__item__description {
  text-align: right;
}
.main__right__item__description em {
  color: #F7803E;
}
.main__right__item__description em.-big {
  font-size: 20px;
}
.main__right__notice {
  margin-bottom: 10px;
  font-size: 10px;
  line-height: 1.4;
}
.main__right__link {
  margin-bottom: 30px;
  text-align: right;
}
.main__right__link a {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  width: 140px;
  padding: 4px 8px 4px 0;
  background: #F9F7F1;
  color: inherit;
  font-size: 12px;
  text-align: center;
  border: 1px solid #DCDDDD;
}
.main__right__link a:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 4.25px 0 4.25px 6px;
  border-color: transparent transparent transparent #ee7700;
}
.main__right__menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main__right__menu__item {
  width: 48%;
}
.main__right__menu__item.-big {
  width: 100%;
}
.main__right__menu__item:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .main__right__menu__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.main__right__menu__item a {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0;
  height: 50px;
  padding-bottom: 2px;
  background: #FFF;
  color: #2F1F8A;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #2F1F8A;
  line-height: 1.2;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main__right__menu__item a {
    height: 40px;
    font-size: 12px;
  }
}
.main__right__menu__item a:before, .main__right__menu__item a:after {
  content: "";
  position: absolute;
}
.main__right__menu__item a:before {
  right: 6px;
  top: 0;
  bottom: 6px;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #FFF;
}
@media screen and (max-width: 768px) {
  .main__right__menu__item a:before {
    right: 10px;
    border-width: 3px 0 3px 4px;
  }
}
.main__right__menu__item a:after {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #2F1F8A;
}
@media screen and (max-width: 768px) {
  .main__right__menu__item a:after {
    height: 2px;
  }
}
.main__right__menu__item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  top: 2px;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .main__right__menu__item a:hover {
    height: 47px;
  }
}
.main__right__menu__item a:hover:before {
  bottom: 0;
}
.main__right__menu__item a:hover:after {
  bottom: -6px;
}
@media screen and (max-width: 768px) {
  .main__right__menu__item a:hover:after {
    bottom: -4px;
  }
}
@media screen and (max-width: 768px) {
  .main__right__menu__item a:hover small {
    margin-top: -15px;
  }
}
.main__center {
  width: 500px;
}
@media screen and (max-width: 768px) {
  .main__center {
    order: 1;
    width: 100%;
    margin: 0 3% 5%;
  }
}
.main__center__link {
  display: flex;
  justify-content: space-between;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .main__center__link {
    margin: 0 3%;
  }
}
.main__center__link__item {
  width: 24%;
}
.main__center__link__item a {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background: #871587;
  background: linear-gradient(90deg, #871587 0%, #142e96 100%);
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main__center__link__item a {
    font-size: 12px;
  }
}
.main__center__sublink__item {
  margin-bottom: 4px;
}
.main__center__sublink__item a {
  height: 28px;
}

.menu__tab {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 1050px;
  margin: 0 auto 25px;
  border-bottom: 4px solid #2f1f8a;
}
@media screen and (max-width: 768px) {
  .menu__tab {
    flex-wrap: wrap;
    width: auto;
  }
}
.menu__tab:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  width: 100%;
  height: 20px;
}
.menu__tab__item {
  min-width: 128px;
}
@media screen and (max-width: 768px) {
  .menu__tab__item {
    width: 50%;
    text-align: center;
  }
}
.menu__tab__item a {
  display: block;
  padding: 17px 0;
  color: #2f1f8a;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  border-top: 4px solid rgba(134, 123, 102, 0.1);
  border-right: 4px solid rgba(134, 123, 102, 0.1);
  text-align: center;
}
.menu__tab__item.-is-active {
  background: #2f1f8a;
  color: #FFF;
  border-top: none;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .menu__tab__item.-is-active {
    justify-content: center;
    border-right: 4px solid rgba(134, 123, 102, 0.1);
  }
}
.menu__tab__item.-is-active a {
  color: #FFF;
}
.menu__tab__item:first-child {
  width: 150px;
  border-left: 4px solid rgba(134, 123, 102, 0.1);
}
@media screen and (max-width: 768px) {
  .menu__tab__item:first-child {
    width: 50%;
    border-left: none;
  }
}
.menu__tab__item:first-child.-is-active {
  border-left: none;
}
@media screen and (max-width: 768px) {
  .menu__tab__item:last-child {
    pointer-events: none;
  }
}
.menu__tab__item.-bdrnone {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .menu__tab__item.-bdrnone {
    border-right: 4px solid rgba(134, 123, 102, 0.1);
  }
}

.link-entrance {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .link-entrance {
    width: 80%;
    margin: 0 auto 6%;
  }
}
.link-entrance a {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 70px;
  background: #871587;
  background: linear-gradient(90deg, #871587 0%, #142e96 100%);
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .link-entrance a {
    height: 50px;
    font-size: 16px;
  }
}
.link-entrance a:before {
  display: none;
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 9.5px 0 9.5px 13px;
  border-color: transparent transparent transparent #FFF;
}
@media screen and (max-width: 768px) {
  .link-entrance a:before {
    border-width: 6.5px 0 6.5px 10px;
  }
}
/*
.message {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
  border: 1px solid #1F2F9E;
  overflow: hidden;
}
*/
.message__title {
  padding: 8px 10px 8px 13px;
  background: #2F1F8A;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}
.message__list {
  padding: 15px 80px;
}
@media screen and (max-width: 768px) {
  .message__list {
    padding: 15px 30px;
  }
}
.message__item {
  position: relative;
}
.message__item:not(:last-child) {
  margin-bottom: 15px;
}
.message__item a {
  display: block;
  padding: 14px 0 15px;
  background: #506ED0;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.message__item__num {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 30px;
  height: 30px;
  background: #e76b26;
}

.important {
  height: 240px;
  padding: 12px 15px 10px;
  background: #FDFCEC;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .important {
    height: 180px;
  }
}
.important__title {
  position: relative;
  margin-bottom: 15px;
  padding: 4px 0 0 45px!important;
  color: #3E0E75!important;
  font-size: 22px!important;
  font-weight: 900!important;
}
.important__title:before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 36px;
  height: 36px;
  background: url("../dealer_mypage/img/important_title_bg.png") left top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
.important__list {
  padding-bottom: 10px;
}
.important__item:not(:last-child) {
  margin-bottom: 8px;
}
.important__item dl {
  display: flex;
  align-items: center;
}
.important__item__date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 20px;
  background: #1F2F9E;
  color: #FFF;
  font-size: 12px;
  font-weight: 300;
}
.important__item__text {
  position: relative;
  margin-left: 8px;
  padding-left: 8px;
  font-size: 13px;
}
.important__item__text:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  background: #F39D47;
}
.important__subitem {
  position: relative;
  margin-left: 8px;
  padding-left: 8px;
  color: #1F2F9E;
  font-size: 13px;
  line-height: 1.38462;
}
.important__subitem:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  background: #F39D47;
}
.important__subitem:not(:last-child) {
  margin-bottom: 10px;
}
.important__subitem a {
  color: #F7803E;
  font-weight: bold;
  text-decoration: underline;
}

.event {
  margin-bottom: 15px;
  border: 1px solid #1F2F9E;
  border-radius: 5px;
}
.event__inner {
  padding: 15px;
}
.event__info__item {
  font-size: 12px;
}
.event__info__item:not(:last-child) {
  margin-bottom: 10px;
}
.event__info__item dl {
  display: flex;
  justify-content: space-between;
}
.event__info__item__term {
  position: relative;
  padding-left: 8px;
  font-weight: bold;
}
.event__info__item__term:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 3px;
  width: 5px;
  height: 5px;
  /*margin: auto;*/
  background: #F39D47;
}
.event__info__item__description {
  color: #1D3994;
  line-height: 1.5;
}
.event__info__item__description:not(:last-of-type) {
  margin-bottom: 3px;
}
.event__info__item__description em {
  color: #F7803E;
  font-weight: bold;
}
.event__link {
  margin-top: 10px;
  text-align: right;
}
.event__link a {
  color: #1D3994;
  font-weight: bold;
  text-decoration: underline;
}

.upgrade__banner {
  margin-bottom: 15px;
}

.banner {
  width: 1050px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .banner {
    width: auto;
  }
}
.banner__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 30px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .banner__list {
    margin: 0 3% 30px;
  }
}
@media screen and (max-width: 480px) {
  .banner__list {
    margin: 0 3%;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.banner__item.-big {
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .banner__item.-big a {
    font-size: 12px;
  }
}
.banner__item a {
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0;
  height: 70px;
  /*padding-bottom: 8px;*/
  background: #506ED0;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #2F1F8A;
  line-height: 1.2;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .banner__item a {
    height: 50px;
    font-size: 10px;
  }
}
.banner__item a:before, .banner__item a:after {
  content: "";
  position: absolute;
}
.banner__item a:before {
  right: 8px;
  top: 0;
  bottom: 6px;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #FFF;
}
@media screen and (max-width: 768px) {
  .banner__item a:before {
    right: 4px;
    border-width: 4px 0 4px 6px;
  }
}
.banner__item a:after {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: #2F1F8A;
}
@media screen and (max-width: 768px) {
  .banner__item a:after {
    height: 4px;
  }
}
.banner__item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  top: 3px;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .banner__item a:hover {
    height: 47px;
  }
}
.banner__item a:hover:before {
  bottom: 0;
}
.banner__item a:hover:after {
  bottom: -6px;
}
@media screen and (max-width: 768px) {
  .banner__item a:hover:after {
    bottom: -4px;
  }
}
@media screen and (max-width: 768px) {
  .banner__item a:hover small {
    margin-top: -15px;
  }
}

.advertisement {
  display: flex;
  flex-wrap: wrap;
  width: 1050px;
  margin: -20px auto 0;
}
@media screen and (max-width: 768px) {
  .advertisement {
    width: auto;
    margin-top: 0;
  }
}
.advertisement__item {
  margin: 20px 30px 0 0;
}
@media screen and (max-width: 768px) {
  .advertisement__item {
    margin: 0 auto;
  }
}
.advertisement__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .advertisement__item:nth-child(3n) {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .advertisement__item:not(:last-child) {
    margin-bottom: 3%;
  }
}

.clock {
  position: absolute;
  right: 0;
  top: 34px;
}
@media screen and (max-width: 768px) {
  .clock {
    position: unset;
    text-align: right;
  }
}
.clock__title {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: #007EBE;
  font-size: 14px;
  cursor: pointer;
}
.clock__title:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
.clock__title:before {
  content: "\f017";
  position: absolute;
  left: 0;
  top: 0;
  color: #686868;
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  font-weight: 500;
}
.clock__popup {
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  display: none;
  position: absolute;
  z-index: 1001;
  left: -120px;
  bottom: 40px;
  width: 400px;
  padding: 10px 15px 20px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .clock__popup {
    width: 92%;
    left: 0;
    right: 0;
    bottom: 80px;
    margin: auto;
    text-align: left;
  }
}
.clock__popup__inner {
  position: relative;
  z-index: 10000;
}
.clock__popup__item__term {
  width: 130px;
}
.clock__popup__item__term, .clock__popup__item__description {
  display: table-cell;
  padding: 10px 10px 5px;
  color: #444;
  font-size: 13px;
}
.clock__popup .close {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  z-index: 1002;
  right: 5px;
  top: 5px;
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .clock__popup .close {
    width: 29px;
    height: 29px;
    right: 5px;
    top: 5px;
  }
}
.clock__popup .close:before, .clock__popup .close:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 2px;
  height: 17px;
  background: #000;
}
@media screen and (max-width: 768px) {
  .clock__popup .close:before, .clock__popup .close:after {
    left: 14px;
    top: 49%;
    height: 15px;
  }
}
.clock__popup .close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.clock__popup .close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.clock__popup .close:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  opacity: 0.75;
}
.clock__popup__difference {
  margin: 8px 115px 0 0;
  color: #444;
  font-size: 11px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .clock__popup__difference {
    margin: 8px 0 0 11px;
    text-align: left;
  }
}
.clock__popup__link {
  margin: 10px 0 0 10px;
  padding-top: 10px;
  border-top: 1px dotted #999;
}
@media screen and (max-width: 768px) {
  .clock__popup__link {
    margin: 10px 0 0 0;
    padding: 10px 0 0 10px;
  }
}
.clock__popup__link__item {
  list-style: square inside;
}
.clock__popup__link__item:not(:last-child) {
  margin-bottom: 10px;
}
.clock__popup__link__item a,
.clock__popup__link__item span {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  margin: 0;
  padding: 0;
  color: #007EBE;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
.clock__popup__link__item a:hover,
.clock__popup__link__item span:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  text-decoration: none;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: 100vh;
}

.calculate {
  *zoom: 1;
  display: none;
  margin: 15px 0 0 -30px;
  text-align: center;
}
.calculate:after {
  content: "";
  display: table;
  clear: both;
}
.calculate > *:not(:last-child) {
  margin-bottom: 8px;
}
.calculate__box {
  font-size: 12px;
}
.calculate__box select {
  cursor: pointer;
}
.calculate__box select:first-child {
  margin-right: 5px;
}
.calculate__button {
  display: flex;
  justify-content: center;
}
.calculate__conversion {
  position: relative;
  margin: 0 30px;
  cursor: pointer;
}
.calculate__conversion:before {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #000;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}
.calculate__conversion.-down {
  padding-left: 20px;
}
.calculate__conversion.-down:before {
  content: "\f103";
  left: 7px;
}
.calculate__conversion.-up {
  padding-right: 20px;
}
.calculate__conversion.-up:before {
  content: "\f102";
  right: 7px;
}
.calculate__prev {
  float: left;
  margin: 10px 0 0 36px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .calculate__prev {
    margin: 10px 0 0 10px;
  }
}
.__no_link {
  color: #666!important;
  background: #ccc!important;
  pointer-events: none;
}
.__no_link::before,
.__no_link::after {
  content: "";
  display: none;
}
.__small_txt{
  display: contents;
  font-size:13px;
}

#repassword_link a {
  color: red !important;
  font-weight: bold !important;
}