@charset "UTF-8";
body > .wrapper {
  min-width: 320px;
}

* {
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Hiragino Sans, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  color: #333;
}

body {
  background: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Hiragino Sans, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
}

html, body, main, nav, aside, section, ul, li, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

ol, ul, li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}

/** --img-- **/
img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}

main a[target=_blank]::after, main .news li a[target=_blank]::after,
main a[href*=".pdf"]::after, .news li a::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  margin-left: 0.3em;
  text-indent: 0;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  width: 17px;
  height: 17px;
  font-size: 17px;
}

body main a[href*=".pdf"]::after, body main .news li a[href*=".pdf"]::after {
  content: "";
  color: rgba(255, 157, 77, 0.9);
  font-weight: 400;
}

body main a[href*=".pptx"]::after, body main .news li a[href*=".pptx"]::after,
body main a[href*=".odp"]::after, body main .news li a[href*=".odp"]::after {
  content: "";
  color: rgba(255, 157, 77, 0.9);
  font-weight: 400;
}

body main a[href*=".mp4"]::after, body main .news li a[href*=".mp4"]::after {
  content: "";
  color: rgba(255, 157, 77, 0.9);
  font-weight: 400;
}

body main a[href*=".png"]::after, body main .news li a[href*=".png"]::after,
body main a[href*=".jpg"]::after, body main .news li a[href*=".jpg"]::after {
  content: "";
  color: rgba(255, 157, 77, 0.9);
  font-weight: 400;
}

body main a[href*=".odt"]::after, body main .news li a[href*=".odt"]::after,
body main a[href*=".txt"]::after, body main .news li a[href*=".txt"]::after {
  content: "";
  color: rgba(255, 157, 77, 0.9);
  font-weight: 400;
}

body main a[href*=".mp3"]::after, body main .news li a[href*=".mp3"]::after {
  content: "";
  color: rgba(255, 157, 77, 0.9);
  font-weight: 400;
}

body main a[href*=".csv"]::after, body main .news li a[href*=".csv"]::after {
  content: "";
  color: rgba(255, 157, 77, 0.9);
}

body main a[href*=".docx"]::after, body main .news li a[href*=".docx"]::after,
body main a[href*=".ods"]::after, body main .news li a[href*=".ods"]::after {
  content: "";
  color: rgba(255, 157, 77, 0.9);
  font-weight: 400;
}

body main a[href*=".xlsx"]::after, body main .news li a[href*=".xlsx"]::after {
  content: "";
  color: rgba(255, 157, 77, 0.9);
  font-weight: 400;
}

main a[target=_blank]::after {
  width: 15px;
  height: 15px;
  font-size: 13px;
  text-align: right;
}

body main a[href*=".pdf"]::after {
  width: 16px;
  height: 16px;
  font-size: 16px;
  text-align: center;
  /*900 (Solid), 400 (Regular or Brands), 300 (Light)*/
}

html body .btn {
  padding: 0 1em;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  border: solid 1px #60caf2;
  background-color: transparent;
  border-radius: 4px;
  text-align: center;
  color: #60caf2;
  font-size: 14px;
  overflow: hidden;
  transition-duration: 0.4s;
  z-index: 0;
}

html body .btn::after {
  position: absolute;
  top: 0;
  left: -70%;
  content: "" !important;
  width: 0%;
  height: 100%;
  background-color: #7bd4f4;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  z-index: -1;
}

html body .btn:hover {
  color: white;
}

html body .btn:hover::after {
  width: 200%;
}

.wrapper {
  display: -ms-grid;
  display: grid;
  min-height: 100vh;
  -ms-grid-rows: 60px 1fr;
  grid-template-rows: 60px 1fr;
  -ms-grid-columns: 200px 1fr;
  grid-template-columns: 200px 1fr;
}

@media screen and (max-width: 899px) {
  .wrapper {
    height: auto;
    -ms-grid-rows: min-content min-content auto;
    grid-template-rows: -webkit-min-content -webkit-min-content auto;
    grid-template-rows: min-content min-content auto;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
/* ==============================
 ヘッダー
============================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 60px;
  background-color: rgba(81, 95, 98, 0.8);
  /*515f62×0.8≒#747f81*/
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  z-index: 100;
}

header .headLeft {
  display: flex;
  align-items: center;
  width: 200px;
  height: 60px;
  padding: 20px 20px 0;
  background-color: #eeeee7;
}

header .headLeft .logo {
  height: 70px;
}

header .headLeft .logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
}

header .headLeft h1 a {
  padding: 0;
}

header .headLeft .logout {
  display: none;
}

header .headRight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 200px);
  height: 60px;
  padding: 0 20px;
}

header .headRight .help {
  position: relative;
  height: 32px;
  padding-left: 2.5em;
  background-color: #60caf2;
  line-height: 30px;
  color: white;
  font-weight: bold;
}

header .headRight .help .fas {
  position: absolute;
  top: calc(50% - 7px);
  left: 10px;
  font-size: 15px;
}

header nav ul {
  display: flex;
}

header nav li {
  margin: 0 10px;
}

header nav a {
  color: #eeeee7;
  font-size: 20px;
}

header nav a:hover {
  color: rgba(238, 238, 231, 0.6);
}

@media screen and (max-width: 899px) {
  header {
    position: relative;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    display: block;
    height: auto;
  }

  header .headRight .help, header .headRight .help:hover {
    margin: 0 1em;
    width: 2.7em;
    padding: 0;
    color: transparent;
  }

  header .headRight .help i, header .headRight .help:hover i {
    color: #fff;
  }

  header .headLeft {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0 15px;
    background-color: white;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  }

  header .headLeft .logo {
    padding-top: 7px;
  }

  header .headLeft .logo img {
    height: 55px;
    width: auto;
    max-height: 55px;
  }

  header .headLeft .logout {
    display: block;
    width: 90px;
    height: 35px;
    line-height: 33px;
    font-size: 10px;
    padding: 0 5px;
    margin-left: auto;
  }

  header .headRight {
    /*display: block;*/
    width: 100%;
    height: auto;
    padding: 0;
  }

  /*	header nav li {
          width: 25%;
          margin: 0;
      }*/
  header nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
  }
}
/* ==============================
 コンテンツ外枠
============================== */
.contents {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}

@media screen and (max-width: 899px) {
  .contents {
    flex-direction: column;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}
/* ==============================
 メインコンテンツ外枠＋共通
============================== */
main {
  width: 100%;
  /*グラフ領域表示時：72%;*/
  padding: 30px;
  /*グラフ領域表示時：30px 20px;*/
  overflow: hidden;
}

main .head {
  margin-bottom: 15px;
}

main h2 {
  color: #60caf2;
  font-size: 18px;
  font-weight: bold !important;
}

main h2 cite {
  display: inline-block;
  margin-left: 2em;
  font-size: 80%;
  font-style: normal;
}

.rss-date {
  display: inline-block;
  padding: 0.5em;
  width: 100%;
  font-size: 80%;
  color: #999;
  font-weight: normal;
  text-align: right;
}

.head .rss-date {
  padding-top: 0;
}

.rss-a-date {
  color: #aaa;
  font-size: 0.7em;
  display: block;
  position: absolute;
  left: 0.1em;
}

#rss li a, #srlnews li.mss a, #srlnews li.no-link > span {
  padding-left: 3em;
  position: relative;
}

.news #srlnews li div a {
  display: inline;
  padding: 0.1em 0.5em;
}

.news #srlnews li div a::after {
  position: relative;
  top: 0;
  display: inline;
}

.news #srlnews li div a.news-link {
  display: block;
  padding: 0.5em 0 0.2em 1em;
}

.orange {
  color: rgba(255, 157, 77, 0.9);
}

@media screen and (max-width: 899px) {
  main {
    width: 100%;
    padding: 0;
  }
}
/* ==============================
 ニュース
============================== */
.news {
  margin-bottom: 0;
}

.news a {
  cursor: pointer;
}

.news > div {
  width: 49%;
  float: left;
  margin-left: 2%;
  margin-bottom: 50px;
}

section.menu {
  clear: both;
}

.news > div:first-child {
  margin-left: 0;
}

#rss li div, #srlnews li div {
  font-size: 0.85em;
  border-top: 1px dashed #ddd;
  padding: 0.5em;
  background: rgba(140, 190, 200, 0.03);
  color: #555;
  line-height: 1.4em;
  display: none;
  word-wrap: break-word;
  /*(全角でも)URLが改行されないので必要*/
  overflow-wrap: break-word;
}

@media screen and (max-width: 899px) {
  .news {
    margin-bottom: 0;
  }

  .news > div {
    width: 100%;
    float: none;
    margin-left: 0;
  }

  section.menu {
    clear: none;
  }
}
.news .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

html body .news .btn {
  flex: 0 0 auto;
  height: 30px;
  line-height: 28px;
}

.news ul {
  border-top: solid 1px #dddddd;
}

.news li {
  border-bottom: solid 1px #dddddd;
}

.news li a, #rss li .rss-none, #srlnews li .rss-none, #srlnews li.no-link {
  position: relative;
  display: block;
  padding: 0.9em 25px 0.9em 0;
  color: #454545;
  font-size: 14px;
  line-height: 1.4em;
}

#rss li .rss-none, #srlnews li .rss-none {
  padding: 0.9em 25px;
  color: #999;
}

.news li a::after {
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  display: block;
  color: #60caf2;
  /*content: "";*/
  content: "";
  /*> \f138*/
  transition: all 0.5s ease-out;
}

.news li a:hover {
  color: #7bd4f4 !important;
}

.news li a.clicked, .news li a.clicked:hover {
  color: #8cbec8;
}

/*color: #96c8d2;*/
.news li a.clicked::after {
  /*content: "\f057";*/
  transform: rotate(180deg);
  color: rgba(140, 190, 200, 0.7);
  /*color: #9ce;*/
}

@media screen and (max-width: 899px) {
  .news {
    margin-bottom: 0;
    padding: 20px 20px 0;
  }

  .news li a {
    padding: 0.8em 25px 0.8em 0;
  }
}
/* ==============================
 コンテンツメニュー（タイルボタン）
============================== */
.menu nav {
  margin-right: -6px;
  margin-left: -6px;
}

.menu ul {
  display: flex;
  flex-wrap: wrap;
}

.menu li {
  width: 25%;
  max-width: 172px;
  padding: 6px;
}

.menu li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 160px;
  background-color: #60caf2;
  border-radius: 4px;
  text-align: center;
  color: white;
  overflow: hidden;
  transition: all 0.3s;
  z-index: 0;
}

.menu li a::after, body .menu a[href*=".pdf"]::after {
  position: absolute;
  top: 0;
  left: -180%;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #7bd4f4;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  z-index: -1;
}

.menu li a:hover::after {
  width: 300%;
}

.menu li .fas, .menu li .far {
  margin-bottom: 25px;
  font-size: 35px;
}

.menu li .title {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 20px;
  font-size: 14px;
}

@media screen and (max-width: 899px) {
  .menu .head {
    padding: 0 20px;
  }

  .menu ul {
    margin-right: 5px;
    margin-left: 5px;
  }

  .menu li {
    width: calc(100% / 5);
    max-width: 100%;
    padding: 1px;
  }

  .menu li a {
    height: calc(100vw / 5);
    border-radius: 0;
  }

  .menu li .title {
    bottom: 15px;
    font-size: 12px;
  }
}
@media screen and (max-width: 699px) {
  .menu li {
    width: calc(100% / 4);
  }

  .menu li a {
    height: calc(100vw / 4);
  }
}
@media screen and (max-width: 499px) {
  .menu li {
    width: calc(100% / 3);
  }

  .menu li a {
    height: calc(100vw / 3);
  }
}
@media screen and (max-width: 339px) {
  .menu li {
    width: 50%;
  }

  .menu li a {
    height: calc(100vw / 2);
  }
}
/* ==============================
 サブコンテンツ（画像など）
============================== */
aside {
  width: 28%;
  min-width: 200px;
  background-color: rgba(239, 239, 239, 0.5);
  padding: 30px 20px;
}

aside h3 {
  margin-bottom: 30px;
  color: #60caf2;
  font-size: 18px;
}

aside > div {
  margin: 0 auto 50px;
}

aside > div img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 899px) {
  aside {
    width: 100%;
    background-color: white;
  }

  aside h3 {
    position: relative;
    text-align: center;
  }

  aside h3::after {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    margin: 15px auto;
    background-color: #979797;
  }
}
/* ==============================
 サイドバー外枠
============================== */
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 200px;
  height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #eeeee7;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}

@media screen and (max-width: 899px) {
  .sidebar {
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
  }
}
/* ==============================
 ユーザー情報
============================== */
.personal {
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: center;
}

.personal .user {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: white;
  border-radius: 30px;
  cursor: pointer;
}

.personal .user .fas {
  color: #747f81;
  font-size: 28px;
}

.personal .profile {
  margin-bottom: 15px;
  color: #747f81;
  cursor: pointer;
}

.personal .profile .blongs {
  font-size: 14px;
}

.personal .profile .name {
  font-size: 16px;
}

html body .personal .btn {
  height: 35px;
  margin: 5px 0;
  line-height: 33px;
  font-size: 12px;
}

@media screen and (max-width: 899px) {
  .personal {
    /*position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    padding: 20px 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;*/
    display: block;
    position: relative;
    padding: 20px 15px;
  }

  .personal .presonal-link {
    white-space: nowrap;
    margin: 0.5em 0 0 auto;
    display: flex;
    justify-content: flex-end;
  }

  .personal-link .btn {
    display: inline-block;
  }

  .personal .user {
    /*flex: 0 0 30px;*/
    float: left;
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
  }

  .personal .user .fas {
    font-size: 16px;
  }

  .personal .profile {
    margin: 0;
    /*flex: 0 0 auto;*/
    text-align: left;
    padding-left: 40px;
  }

  html body .personal .info, html body .personal .kiyaku {
    margin: 5px 5px 5px 0;
  }

  .personal .logout {
    margin: 5px 5px 5px 5px !important;
  }
}
/* ==============================
 担当者一覧
============================== */
.contact {
  padding: 20px 0 0 !important;
  background-color: #747f81 !important;
}

.contact h3 {
  margin-bottom: 15px;
  padding: 0 10px;
  color: white;
  font-size: 14px;
}

.contact h3 .fas {
  margin-right: 10px;
  vertical-align: -2px;
  font-size: 20px;
}

.contact li {
  position: relative;
  display: flex;
  align-items: center;
  margin: 10px 0;
  padding: 0 10px;
}

.contact .icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  border-radius: 50%;
  background: #ebecd3;
}

.contact .icon img {
  display: block;
  width: 100%;
  height: auto;
}

.contact a {
  color: white;
  font-size: 12px;
}

.contact a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact a:hover {
  color: rgba(255, 255, 255, 0.6);
}

header .copyright {
  display: none;
}

.contact .copyright {
  display: block;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px;
  padding: 0 10px 5px;
  text-align: right;
}

@media screen and (max-width: 899px) {
  .contact {
    padding: 10px 0;
    background-color: #e5e5d6;
    display: none;
  }

  .contact h3 {
    margin: 0;
    padding: 0 20px;
    color: #747f81;
  }

  .contact li {
    padding: 0 20px;
  }

  .contact a {
    color: #747f81;
  }

  .contact a:hover {
    color: rgba(116, 127, 129, 0.6);
  }

  .contact .icon {
    width: 30px;
    height: 30px;
    background: #f5f5f1;
  }

  header .copyright {
    display: block;
    white-space: nowrap;
    color: #747f81;
    font-size: 13px;
    margin: auto auto 5px 0;
  }

  .contact .copyright {
    display: none;
  }

  /*.contact .copyright{color: #747f81; padding: 0 10px 0;}*/
}
.fs10 {
  font-size: 10px !important;
}

.fs11 {
  font-size: 11px !important;
}

.fs12 {
  font-size: 12px !important;
}

.fs13 {
  font-size: 13px !important;
}

.fs14 {
  font-size: 14px !important;
}

.fs15 {
  font-size: 15px !important;
}

.fs16 {
  font-size: 16px !important;
}

.fs17 {
  font-size: 17px !important;
}

.fs18 {
  font-size: 18px !important;
}

.fs19 {
  font-size: 19px !important;
}

.fs20 {
  font-size: 20px !important;
}

.fs21 {
  font-size: 21px !important;
}

.fs22 {
  font-size: 22px !important;
}

.fs23 {
  font-size: 23px !important;
}

.fs24 {
  font-size: 24px !important;
}

.fs25 {
  font-size: 25px !important;
}

.fs26 {
  font-size: 26px !important;
}

.fs27 {
  font-size: 27px !important;
}

.fs28 {
  font-size: 28px !important;
}

.fs29 {
  font-size: 29px !important;
}

.fs30 {
  font-size: 30px !important;
}

.fs31 {
  font-size: 31px !important;
}

.fs32 {
  font-size: 32px !important;
}

.fs33 {
  font-size: 33px !important;
}

.fs34 {
  font-size: 34px !important;
}

.fs35 {
  font-size: 35px !important;
}

.fs36 {
  font-size: 36px !important;
}

.fs37 {
  font-size: 37px !important;
}

.fs38 {
  font-size: 38px !important;
}

.fs39 {
  font-size: 39px !important;
}

.fs40 {
  font-size: 40px !important;
}

.maxw-50 {
  max-width: 50px;
}

.maxh-50 {
  max-height: 50px;
}

.maxw-100 {
  max-width: 100px;
}

.maxh-100 {
  max-height: 100px;
}

.maxw-150 {
  max-width: 150px;
}

.maxh-150 {
  max-height: 150px;
}

.maxw-200 {
  max-width: 200px;
}

.maxh-200 {
  max-height: 200px;
}

.maxw-250 {
  max-width: 250px;
}

.maxh-250 {
  max-height: 250px;
}

.maxw-300 {
  max-width: 300px;
}

.maxh-300 {
  max-height: 300px;
}

.maxw-350 {
  max-width: 350px;
}

.maxh-350 {
  max-height: 350px;
}

.maxw-400 {
  max-width: 400px;
}

.maxh-400 {
  max-height: 400px;
}

.maxw-450 {
  max-width: 450px;
}

.maxh-450 {
  max-height: 450px;
}

.maxw-500 {
  max-width: 500px;
}

.maxh-500 {
  max-height: 500px;
}

.maxw-550 {
  max-width: 550px;
}

.maxh-550 {
  max-height: 550px;
}

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

.maxh-600 {
  max-height: 600px;
}

.maxw-650 {
  max-width: 650px;
}

.maxh-650 {
  max-height: 650px;
}

.maxw-700 {
  max-width: 700px;
}

.maxh-700 {
  max-height: 700px;
}

.maxw-750 {
  max-width: 750px;
}

.maxh-750 {
  max-height: 750px;
}

.maxw-800 {
  max-width: 800px;
}

.maxh-800 {
  max-height: 800px;
}

.maxw-850 {
  max-width: 850px;
}

.maxh-850 {
  max-height: 850px;
}

.maxw-900 {
  max-width: 900px;
}

.maxh-900 {
  max-height: 900px;
}

.maxw-950 {
  max-width: 950px;
}

.maxh-950 {
  max-height: 950px;
}

.maxw-1000 {
  max-width: 1000px;
}

.maxh-1000 {
  max-height: 1000px;
}

.minw-20 {
  min-width: 20px;
}

.minw-40 {
  min-width: 40px;
}

.minw-60 {
  min-width: 60px;
}

.minw-80 {
  min-width: 80px;
}

.minw-100 {
  min-width: 100px;
}

.minw-120 {
  min-width: 120px;
}

.minw-140 {
  min-width: 140px;
}

.minw-160 {
  min-width: 160px;
}

.minw-180 {
  min-width: 180px;
}

.minw-200 {
  min-width: 200px;
}

.minw-220 {
  min-width: 220px;
}

.minw-240 {
  min-width: 240px;
}

.minw-260 {
  min-width: 260px;
}

.minw-280 {
  min-width: 280px;
}

.minw-300 {
  min-width: 300px;
}

.minw-320 {
  min-width: 320px;
}

.minw-340 {
  min-width: 340px;
}

.minw-360 {
  min-width: 360px;
}

.minw-380 {
  min-width: 380px;
}

.minw-400 {
  min-width: 400px;
}

.w-1 {
  width: 1% !important;
}

.vw-1 {
  width: 1vw;
}

.vh-1 {
  height: 1vh;
}

.min-vw-1 {
  min-width: 1vw;
}

.min-vh-1 {
  min-height: 1vh;
}

.w-2 {
  width: 2% !important;
}

.vw-2 {
  width: 2vw;
}

.vh-2 {
  height: 2vh;
}

.min-vw-2 {
  min-width: 2vw;
}

.min-vh-2 {
  min-height: 2vh;
}

.w-3 {
  width: 3% !important;
}

.vw-3 {
  width: 3vw;
}

.vh-3 {
  height: 3vh;
}

.min-vw-3 {
  min-width: 3vw;
}

.min-vh-3 {
  min-height: 3vh;
}

.w-4 {
  width: 4% !important;
}

.vw-4 {
  width: 4vw;
}

.vh-4 {
  height: 4vh;
}

.min-vw-4 {
  min-width: 4vw;
}

.min-vh-4 {
  min-height: 4vh;
}

.w-5 {
  width: 5% !important;
}

.vw-5 {
  width: 5vw;
}

.vh-5 {
  height: 5vh;
}

.min-vw-5 {
  min-width: 5vw;
}

.min-vh-5 {
  min-height: 5vh;
}

.w-6 {
  width: 6% !important;
}

.vw-6 {
  width: 6vw;
}

.vh-6 {
  height: 6vh;
}

.min-vw-6 {
  min-width: 6vw;
}

.min-vh-6 {
  min-height: 6vh;
}

.w-7 {
  width: 7% !important;
}

.vw-7 {
  width: 7vw;
}

.vh-7 {
  height: 7vh;
}

.min-vw-7 {
  min-width: 7vw;
}

.min-vh-7 {
  min-height: 7vh;
}

.w-8 {
  width: 8% !important;
}

.vw-8 {
  width: 8vw;
}

.vh-8 {
  height: 8vh;
}

.min-vw-8 {
  min-width: 8vw;
}

.min-vh-8 {
  min-height: 8vh;
}

.w-9 {
  width: 9% !important;
}

.vw-9 {
  width: 9vw;
}

.vh-9 {
  height: 9vh;
}

.min-vw-9 {
  min-width: 9vw;
}

.min-vh-9 {
  min-height: 9vh;
}

.w-10 {
  width: 10% !important;
}

.vw-10 {
  width: 10vw;
}

.vh-10 {
  height: 10vh;
}

.min-vw-10 {
  min-width: 10vw;
}

.min-vh-10 {
  min-height: 10vh;
}

.w-11 {
  width: 11% !important;
}

.vw-11 {
  width: 11vw;
}

.vh-11 {
  height: 11vh;
}

.min-vw-11 {
  min-width: 11vw;
}

.min-vh-11 {
  min-height: 11vh;
}

.w-12 {
  width: 12% !important;
}

.vw-12 {
  width: 12vw;
}

.vh-12 {
  height: 12vh;
}

.min-vw-12 {
  min-width: 12vw;
}

.min-vh-12 {
  min-height: 12vh;
}

.w-13 {
  width: 13% !important;
}

.vw-13 {
  width: 13vw;
}

.vh-13 {
  height: 13vh;
}

.min-vw-13 {
  min-width: 13vw;
}

.min-vh-13 {
  min-height: 13vh;
}

.w-14 {
  width: 14% !important;
}

.vw-14 {
  width: 14vw;
}

.vh-14 {
  height: 14vh;
}

.min-vw-14 {
  min-width: 14vw;
}

.min-vh-14 {
  min-height: 14vh;
}

.w-15 {
  width: 15% !important;
}

.vw-15 {
  width: 15vw;
}

.vh-15 {
  height: 15vh;
}

.min-vw-15 {
  min-width: 15vw;
}

.min-vh-15 {
  min-height: 15vh;
}

.w-16 {
  width: 16% !important;
}

.vw-16 {
  width: 16vw;
}

.vh-16 {
  height: 16vh;
}

.min-vw-16 {
  min-width: 16vw;
}

.min-vh-16 {
  min-height: 16vh;
}

.w-17 {
  width: 17% !important;
}

.vw-17 {
  width: 17vw;
}

.vh-17 {
  height: 17vh;
}

.min-vw-17 {
  min-width: 17vw;
}

.min-vh-17 {
  min-height: 17vh;
}

.w-18 {
  width: 18% !important;
}

.vw-18 {
  width: 18vw;
}

.vh-18 {
  height: 18vh;
}

.min-vw-18 {
  min-width: 18vw;
}

.min-vh-18 {
  min-height: 18vh;
}

.w-19 {
  width: 19% !important;
}

.vw-19 {
  width: 19vw;
}

.vh-19 {
  height: 19vh;
}

.min-vw-19 {
  min-width: 19vw;
}

.min-vh-19 {
  min-height: 19vh;
}

.w-20 {
  width: 20% !important;
}

.vw-20 {
  width: 20vw;
}

.vh-20 {
  height: 20vh;
}

.min-vw-20 {
  min-width: 20vw;
}

.min-vh-20 {
  min-height: 20vh;
}

.w-21 {
  width: 21% !important;
}

.vw-21 {
  width: 21vw;
}

.vh-21 {
  height: 21vh;
}

.min-vw-21 {
  min-width: 21vw;
}

.min-vh-21 {
  min-height: 21vh;
}

.w-22 {
  width: 22% !important;
}

.vw-22 {
  width: 22vw;
}

.vh-22 {
  height: 22vh;
}

.min-vw-22 {
  min-width: 22vw;
}

.min-vh-22 {
  min-height: 22vh;
}

.w-23 {
  width: 23% !important;
}

.vw-23 {
  width: 23vw;
}

.vh-23 {
  height: 23vh;
}

.min-vw-23 {
  min-width: 23vw;
}

.min-vh-23 {
  min-height: 23vh;
}

.w-24 {
  width: 24% !important;
}

.vw-24 {
  width: 24vw;
}

.vh-24 {
  height: 24vh;
}

.min-vw-24 {
  min-width: 24vw;
}

.min-vh-24 {
  min-height: 24vh;
}

.w-25 {
  width: 25% !important;
}

.vw-25 {
  width: 25vw;
}

.vh-25 {
  height: 25vh;
}

.min-vw-25 {
  min-width: 25vw;
}

.min-vh-25 {
  min-height: 25vh;
}

.w-26 {
  width: 26% !important;
}

.vw-26 {
  width: 26vw;
}

.vh-26 {
  height: 26vh;
}

.min-vw-26 {
  min-width: 26vw;
}

.min-vh-26 {
  min-height: 26vh;
}

.w-27 {
  width: 27% !important;
}

.vw-27 {
  width: 27vw;
}

.vh-27 {
  height: 27vh;
}

.min-vw-27 {
  min-width: 27vw;
}

.min-vh-27 {
  min-height: 27vh;
}

.w-28 {
  width: 28% !important;
}

.vw-28 {
  width: 28vw;
}

.vh-28 {
  height: 28vh;
}

.min-vw-28 {
  min-width: 28vw;
}

.min-vh-28 {
  min-height: 28vh;
}

.w-29 {
  width: 29% !important;
}

.vw-29 {
  width: 29vw;
}

.vh-29 {
  height: 29vh;
}

.min-vw-29 {
  min-width: 29vw;
}

.min-vh-29 {
  min-height: 29vh;
}

.w-30 {
  width: 30% !important;
}

.vw-30 {
  width: 30vw;
}

.vh-30 {
  height: 30vh;
}

.min-vw-30 {
  min-width: 30vw;
}

.min-vh-30 {
  min-height: 30vh;
}

.w-31 {
  width: 31% !important;
}

.vw-31 {
  width: 31vw;
}

.vh-31 {
  height: 31vh;
}

.min-vw-31 {
  min-width: 31vw;
}

.min-vh-31 {
  min-height: 31vh;
}

.w-32 {
  width: 32% !important;
}

.vw-32 {
  width: 32vw;
}

.vh-32 {
  height: 32vh;
}

.min-vw-32 {
  min-width: 32vw;
}

.min-vh-32 {
  min-height: 32vh;
}

.w-33 {
  width: 33% !important;
}

.vw-33 {
  width: 33vw;
}

.vh-33 {
  height: 33vh;
}

.min-vw-33 {
  min-width: 33vw;
}

.min-vh-33 {
  min-height: 33vh;
}

.w-34 {
  width: 34% !important;
}

.vw-34 {
  width: 34vw;
}

.vh-34 {
  height: 34vh;
}

.min-vw-34 {
  min-width: 34vw;
}

.min-vh-34 {
  min-height: 34vh;
}

.w-35 {
  width: 35% !important;
}

.vw-35 {
  width: 35vw;
}

.vh-35 {
  height: 35vh;
}

.min-vw-35 {
  min-width: 35vw;
}

.min-vh-35 {
  min-height: 35vh;
}

.w-36 {
  width: 36% !important;
}

.vw-36 {
  width: 36vw;
}

.vh-36 {
  height: 36vh;
}

.min-vw-36 {
  min-width: 36vw;
}

.min-vh-36 {
  min-height: 36vh;
}

.w-37 {
  width: 37% !important;
}

.vw-37 {
  width: 37vw;
}

.vh-37 {
  height: 37vh;
}

.min-vw-37 {
  min-width: 37vw;
}

.min-vh-37 {
  min-height: 37vh;
}

.w-38 {
  width: 38% !important;
}

.vw-38 {
  width: 38vw;
}

.vh-38 {
  height: 38vh;
}

.min-vw-38 {
  min-width: 38vw;
}

.min-vh-38 {
  min-height: 38vh;
}

.w-39 {
  width: 39% !important;
}

.vw-39 {
  width: 39vw;
}

.vh-39 {
  height: 39vh;
}

.min-vw-39 {
  min-width: 39vw;
}

.min-vh-39 {
  min-height: 39vh;
}

.w-40 {
  width: 40% !important;
}

.vw-40 {
  width: 40vw;
}

.vh-40 {
  height: 40vh;
}

.min-vw-40 {
  min-width: 40vw;
}

.min-vh-40 {
  min-height: 40vh;
}

.w-41 {
  width: 41% !important;
}

.vw-41 {
  width: 41vw;
}

.vh-41 {
  height: 41vh;
}

.min-vw-41 {
  min-width: 41vw;
}

.min-vh-41 {
  min-height: 41vh;
}

.w-42 {
  width: 42% !important;
}

.vw-42 {
  width: 42vw;
}

.vh-42 {
  height: 42vh;
}

.min-vw-42 {
  min-width: 42vw;
}

.min-vh-42 {
  min-height: 42vh;
}

.w-43 {
  width: 43% !important;
}

.vw-43 {
  width: 43vw;
}

.vh-43 {
  height: 43vh;
}

.min-vw-43 {
  min-width: 43vw;
}

.min-vh-43 {
  min-height: 43vh;
}

.w-44 {
  width: 44% !important;
}

.vw-44 {
  width: 44vw;
}

.vh-44 {
  height: 44vh;
}

.min-vw-44 {
  min-width: 44vw;
}

.min-vh-44 {
  min-height: 44vh;
}

.w-45 {
  width: 45% !important;
}

.vw-45 {
  width: 45vw;
}

.vh-45 {
  height: 45vh;
}

.min-vw-45 {
  min-width: 45vw;
}

.min-vh-45 {
  min-height: 45vh;
}

.w-46 {
  width: 46% !important;
}

.vw-46 {
  width: 46vw;
}

.vh-46 {
  height: 46vh;
}

.min-vw-46 {
  min-width: 46vw;
}

.min-vh-46 {
  min-height: 46vh;
}

.w-47 {
  width: 47% !important;
}

.vw-47 {
  width: 47vw;
}

.vh-47 {
  height: 47vh;
}

.min-vw-47 {
  min-width: 47vw;
}

.min-vh-47 {
  min-height: 47vh;
}

.w-48 {
  width: 48% !important;
}

.vw-48 {
  width: 48vw;
}

.vh-48 {
  height: 48vh;
}

.min-vw-48 {
  min-width: 48vw;
}

.min-vh-48 {
  min-height: 48vh;
}

.w-49 {
  width: 49% !important;
}

.vw-49 {
  width: 49vw;
}

.vh-49 {
  height: 49vh;
}

.min-vw-49 {
  min-width: 49vw;
}

.min-vh-49 {
  min-height: 49vh;
}

.w-50 {
  width: 50% !important;
}

.vw-50 {
  width: 50vw;
}

.vh-50 {
  height: 50vh;
}

.min-vw-50 {
  min-width: 50vw;
}

.min-vh-50 {
  min-height: 50vh;
}

.w-51 {
  width: 51% !important;
}

.vw-51 {
  width: 51vw;
}

.vh-51 {
  height: 51vh;
}

.min-vw-51 {
  min-width: 51vw;
}

.min-vh-51 {
  min-height: 51vh;
}

.w-52 {
  width: 52% !important;
}

.vw-52 {
  width: 52vw;
}

.vh-52 {
  height: 52vh;
}

.min-vw-52 {
  min-width: 52vw;
}

.min-vh-52 {
  min-height: 52vh;
}

.w-53 {
  width: 53% !important;
}

.vw-53 {
  width: 53vw;
}

.vh-53 {
  height: 53vh;
}

.min-vw-53 {
  min-width: 53vw;
}

.min-vh-53 {
  min-height: 53vh;
}

.w-54 {
  width: 54% !important;
}

.vw-54 {
  width: 54vw;
}

.vh-54 {
  height: 54vh;
}

.min-vw-54 {
  min-width: 54vw;
}

.min-vh-54 {
  min-height: 54vh;
}

.w-55 {
  width: 55% !important;
}

.vw-55 {
  width: 55vw;
}

.vh-55 {
  height: 55vh;
}

.min-vw-55 {
  min-width: 55vw;
}

.min-vh-55 {
  min-height: 55vh;
}

.w-56 {
  width: 56% !important;
}

.vw-56 {
  width: 56vw;
}

.vh-56 {
  height: 56vh;
}

.min-vw-56 {
  min-width: 56vw;
}

.min-vh-56 {
  min-height: 56vh;
}

.w-57 {
  width: 57% !important;
}

.vw-57 {
  width: 57vw;
}

.vh-57 {
  height: 57vh;
}

.min-vw-57 {
  min-width: 57vw;
}

.min-vh-57 {
  min-height: 57vh;
}

.w-58 {
  width: 58% !important;
}

.vw-58 {
  width: 58vw;
}

.vh-58 {
  height: 58vh;
}

.min-vw-58 {
  min-width: 58vw;
}

.min-vh-58 {
  min-height: 58vh;
}

.w-59 {
  width: 59% !important;
}

.vw-59 {
  width: 59vw;
}

.vh-59 {
  height: 59vh;
}

.min-vw-59 {
  min-width: 59vw;
}

.min-vh-59 {
  min-height: 59vh;
}

.w-60 {
  width: 60% !important;
}

.vw-60 {
  width: 60vw;
}

.vh-60 {
  height: 60vh;
}

.min-vw-60 {
  min-width: 60vw;
}

.min-vh-60 {
  min-height: 60vh;
}

.w-61 {
  width: 61% !important;
}

.vw-61 {
  width: 61vw;
}

.vh-61 {
  height: 61vh;
}

.min-vw-61 {
  min-width: 61vw;
}

.min-vh-61 {
  min-height: 61vh;
}

.w-62 {
  width: 62% !important;
}

.vw-62 {
  width: 62vw;
}

.vh-62 {
  height: 62vh;
}

.min-vw-62 {
  min-width: 62vw;
}

.min-vh-62 {
  min-height: 62vh;
}

.w-63 {
  width: 63% !important;
}

.vw-63 {
  width: 63vw;
}

.vh-63 {
  height: 63vh;
}

.min-vw-63 {
  min-width: 63vw;
}

.min-vh-63 {
  min-height: 63vh;
}

.w-64 {
  width: 64% !important;
}

.vw-64 {
  width: 64vw;
}

.vh-64 {
  height: 64vh;
}

.min-vw-64 {
  min-width: 64vw;
}

.min-vh-64 {
  min-height: 64vh;
}

.w-65 {
  width: 65% !important;
}

.vw-65 {
  width: 65vw;
}

.vh-65 {
  height: 65vh;
}

.min-vw-65 {
  min-width: 65vw;
}

.min-vh-65 {
  min-height: 65vh;
}

.w-66 {
  width: 66% !important;
}

.vw-66 {
  width: 66vw;
}

.vh-66 {
  height: 66vh;
}

.min-vw-66 {
  min-width: 66vw;
}

.min-vh-66 {
  min-height: 66vh;
}

.w-67 {
  width: 67% !important;
}

.vw-67 {
  width: 67vw;
}

.vh-67 {
  height: 67vh;
}

.min-vw-67 {
  min-width: 67vw;
}

.min-vh-67 {
  min-height: 67vh;
}

.w-68 {
  width: 68% !important;
}

.vw-68 {
  width: 68vw;
}

.vh-68 {
  height: 68vh;
}

.min-vw-68 {
  min-width: 68vw;
}

.min-vh-68 {
  min-height: 68vh;
}

.w-69 {
  width: 69% !important;
}

.vw-69 {
  width: 69vw;
}

.vh-69 {
  height: 69vh;
}

.min-vw-69 {
  min-width: 69vw;
}

.min-vh-69 {
  min-height: 69vh;
}

.w-70 {
  width: 70% !important;
}

.vw-70 {
  width: 70vw;
}

.vh-70 {
  height: 70vh;
}

.min-vw-70 {
  min-width: 70vw;
}

.min-vh-70 {
  min-height: 70vh;
}

.w-71 {
  width: 71% !important;
}

.vw-71 {
  width: 71vw;
}

.vh-71 {
  height: 71vh;
}

.min-vw-71 {
  min-width: 71vw;
}

.min-vh-71 {
  min-height: 71vh;
}

.w-72 {
  width: 72% !important;
}

.vw-72 {
  width: 72vw;
}

.vh-72 {
  height: 72vh;
}

.min-vw-72 {
  min-width: 72vw;
}

.min-vh-72 {
  min-height: 72vh;
}

.w-73 {
  width: 73% !important;
}

.vw-73 {
  width: 73vw;
}

.vh-73 {
  height: 73vh;
}

.min-vw-73 {
  min-width: 73vw;
}

.min-vh-73 {
  min-height: 73vh;
}

.w-74 {
  width: 74% !important;
}

.vw-74 {
  width: 74vw;
}

.vh-74 {
  height: 74vh;
}

.min-vw-74 {
  min-width: 74vw;
}

.min-vh-74 {
  min-height: 74vh;
}

.w-75 {
  width: 75% !important;
}

.vw-75 {
  width: 75vw;
}

.vh-75 {
  height: 75vh;
}

.min-vw-75 {
  min-width: 75vw;
}

.min-vh-75 {
  min-height: 75vh;
}

.w-76 {
  width: 76% !important;
}

.vw-76 {
  width: 76vw;
}

.vh-76 {
  height: 76vh;
}

.min-vw-76 {
  min-width: 76vw;
}

.min-vh-76 {
  min-height: 76vh;
}

.w-77 {
  width: 77% !important;
}

.vw-77 {
  width: 77vw;
}

.vh-77 {
  height: 77vh;
}

.min-vw-77 {
  min-width: 77vw;
}

.min-vh-77 {
  min-height: 77vh;
}

.w-78 {
  width: 78% !important;
}

.vw-78 {
  width: 78vw;
}

.vh-78 {
  height: 78vh;
}

.min-vw-78 {
  min-width: 78vw;
}

.min-vh-78 {
  min-height: 78vh;
}

.w-79 {
  width: 79% !important;
}

.vw-79 {
  width: 79vw;
}

.vh-79 {
  height: 79vh;
}

.min-vw-79 {
  min-width: 79vw;
}

.min-vh-79 {
  min-height: 79vh;
}

.w-80 {
  width: 80% !important;
}

.vw-80 {
  width: 80vw;
}

.vh-80 {
  height: 80vh;
}

.min-vw-80 {
  min-width: 80vw;
}

.min-vh-80 {
  min-height: 80vh;
}

.w-81 {
  width: 81% !important;
}

.vw-81 {
  width: 81vw;
}

.vh-81 {
  height: 81vh;
}

.min-vw-81 {
  min-width: 81vw;
}

.min-vh-81 {
  min-height: 81vh;
}

.w-82 {
  width: 82% !important;
}

.vw-82 {
  width: 82vw;
}

.vh-82 {
  height: 82vh;
}

.min-vw-82 {
  min-width: 82vw;
}

.min-vh-82 {
  min-height: 82vh;
}

.w-83 {
  width: 83% !important;
}

.vw-83 {
  width: 83vw;
}

.vh-83 {
  height: 83vh;
}

.min-vw-83 {
  min-width: 83vw;
}

.min-vh-83 {
  min-height: 83vh;
}

.w-84 {
  width: 84% !important;
}

.vw-84 {
  width: 84vw;
}

.vh-84 {
  height: 84vh;
}

.min-vw-84 {
  min-width: 84vw;
}

.min-vh-84 {
  min-height: 84vh;
}

.w-85 {
  width: 85% !important;
}

.vw-85 {
  width: 85vw;
}

.vh-85 {
  height: 85vh;
}

.min-vw-85 {
  min-width: 85vw;
}

.min-vh-85 {
  min-height: 85vh;
}

.w-86 {
  width: 86% !important;
}

.vw-86 {
  width: 86vw;
}

.vh-86 {
  height: 86vh;
}

.min-vw-86 {
  min-width: 86vw;
}

.min-vh-86 {
  min-height: 86vh;
}

.w-87 {
  width: 87% !important;
}

.vw-87 {
  width: 87vw;
}

.vh-87 {
  height: 87vh;
}

.min-vw-87 {
  min-width: 87vw;
}

.min-vh-87 {
  min-height: 87vh;
}

.w-88 {
  width: 88% !important;
}

.vw-88 {
  width: 88vw;
}

.vh-88 {
  height: 88vh;
}

.min-vw-88 {
  min-width: 88vw;
}

.min-vh-88 {
  min-height: 88vh;
}

.w-89 {
  width: 89% !important;
}

.vw-89 {
  width: 89vw;
}

.vh-89 {
  height: 89vh;
}

.min-vw-89 {
  min-width: 89vw;
}

.min-vh-89 {
  min-height: 89vh;
}

.w-90 {
  width: 90% !important;
}

.vw-90 {
  width: 90vw;
}

.vh-90 {
  height: 90vh;
}

.min-vw-90 {
  min-width: 90vw;
}

.min-vh-90 {
  min-height: 90vh;
}

.w-91 {
  width: 91% !important;
}

.vw-91 {
  width: 91vw;
}

.vh-91 {
  height: 91vh;
}

.min-vw-91 {
  min-width: 91vw;
}

.min-vh-91 {
  min-height: 91vh;
}

.w-92 {
  width: 92% !important;
}

.vw-92 {
  width: 92vw;
}

.vh-92 {
  height: 92vh;
}

.min-vw-92 {
  min-width: 92vw;
}

.min-vh-92 {
  min-height: 92vh;
}

.w-93 {
  width: 93% !important;
}

.vw-93 {
  width: 93vw;
}

.vh-93 {
  height: 93vh;
}

.min-vw-93 {
  min-width: 93vw;
}

.min-vh-93 {
  min-height: 93vh;
}

.w-94 {
  width: 94% !important;
}

.vw-94 {
  width: 94vw;
}

.vh-94 {
  height: 94vh;
}

.min-vw-94 {
  min-width: 94vw;
}

.min-vh-94 {
  min-height: 94vh;
}

.w-95 {
  width: 95% !important;
}

.vw-95 {
  width: 95vw;
}

.vh-95 {
  height: 95vh;
}

.min-vw-95 {
  min-width: 95vw;
}

.min-vh-95 {
  min-height: 95vh;
}

.w-96 {
  width: 96% !important;
}

.vw-96 {
  width: 96vw;
}

.vh-96 {
  height: 96vh;
}

.min-vw-96 {
  min-width: 96vw;
}

.min-vh-96 {
  min-height: 96vh;
}

.w-97 {
  width: 97% !important;
}

.vw-97 {
  width: 97vw;
}

.vh-97 {
  height: 97vh;
}

.min-vw-97 {
  min-width: 97vw;
}

.min-vh-97 {
  min-height: 97vh;
}

.w-98 {
  width: 98% !important;
}

.vw-98 {
  width: 98vw;
}

.vh-98 {
  height: 98vh;
}

.min-vw-98 {
  min-width: 98vw;
}

.min-vh-98 {
  min-height: 98vh;
}

.w-99 {
  width: 99% !important;
}

.vw-99 {
  width: 99vw;
}

.vh-99 {
  height: 99vh;
}

.min-vw-99 {
  min-width: 99vw;
}

.min-vh-99 {
  min-height: 99vh;
}

.w-100 {
  width: 100% !important;
}

.vw-100 {
  width: 100vw;
}

.vh-100 {
  height: 100vh;
}

.min-vw-100 {
  min-width: 100vw;
}

.min-vh-100 {
  min-height: 100vh;
}

/** --a-- **/
a {
  transition: 200ms all;
  text-decoration: none;
  color: #62c3e9;
}

a:hover {
  color: #4cb8e3;
  text-decoration: none;
}

/** common ***/
.form-control {
  border-radius: 5px;
  border: 1px solid #DCDFE6;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 10px;
  color: #303133;
  width: 100%;
}

.form-control-ms {
  height: 36px;
  font-size: 13px;
}

.form-control-md {
  height: 46px;
  font-size: 14px;
}

.form-control-lg {
  height: 53px;
  font-size: 15px;
}

.form-control-radius {
  border-radius: 4px;
}

.form-control-danger {
  border: 1px solid #F56C6C !important;
}
.form-control-danger:focus {
  box-shadow: none;
  outline: none;
}

.form-control:active:focus {
  border: 1px solid #409EFF;
  box-shadow: none;
  outline: none;
}

.form-control::-moz-placeholder {
  color: #c0c4cc;
  font-size: 12px;
}

.form-control:-ms-input-placeholder {
  color: #c0c4cc;
  font-size: 12px;
}

.form-control::placeholder {
  color: #c0c4cc;
  font-size: 12px;
}

select.form-control {
  background: url(/../img/iconSelectBox-blue.svg) no-repeat scroll right 12px center white;
  padding-right: 32px;
}

select::-ms-expand {
  display: none;
}

textarea.form-control {
  resize: none;
}

.form-icon {
  position: relative;
}

.form-icon.icon-left .icon {
  left: 16px;
}

.form-icon.icon-left .form-control {
  padding-left: 50px;
}

.form-icon.icon-right .icon {
  right: 16px;
}

.form-icon.icon-right .form-control {
  padding-right: 50px;
}

.form-icon .icon {
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  top: 0;
}

.form-icon .icon.icon-cursor {
  cursor: pointer;
}

.form-icon .icon img {
  max-height: 16px;
}

.text-error {
  font-size: 12px;
  margin: 8px 0 0;
  color: #F56C6C;
}

.text-gray-909399 {
  color: #909399;
}

.btn {
  padding: 0 1em;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  border: solid 1px #60caf2;
  background-color: transparent;
  border-radius: 4px;
  text-align: center;
  color: #60caf2;
  font-size: 14px;
  overflow: hidden;
  transition-duration: 0.4s;
  z-index: 0;
}
.btn::after {
  position: absolute;
  top: 0;
  left: -70%;
  content: "" !important;
  width: 0;
  height: 100%;
  background-color: #7bd4f4;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  z-index: -1;
}
.btn:hover::after {
  width: 200%;
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.btn-ms {
  padding: 6px 10px !important;
  font-size: 13px !important;
}

.btn-md {
  padding: 10px 10px !important;
  font-size: 16px !important;
  height: 45px !important;
}

.btn-lg {
  padding: 13px 16px !important;
  font-size: 18px !important;
}

.btn-shadow {
  box-shadow: 0 4px 6px -4px rgba(24, 39, 75, 0.12), 0px 8px 8px -4px rgba(24, 39, 75, 0.08);
}

.btn.btn-primary {
  background: #62c3e9;
  color: white;
  font-weight: bold;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  border: 1px solid #62c3e9;
}
.btn.btn-primary:not(:disabled):not(.disabled):active {
  border: 1px solid #62c3e9;
  background: #62c3e9;
}

.btn.btn-outline-primary {
  color: #62c3e9;
  border: 1px solid #62c3e9;
  font-weight: bold;
}

.btn.btn-outline-primary:hover {
  color: white;
}

.btn.btn-ct-outline-dark {
  color: #303133 !important;
  border: 1px solid #DCDFE6 !important;
  font-weight: bold;
}
.btn.btn-ct-outline-dark::after {
  background-color: transparent !important;
}

.btn.disabled {
  cursor: not-allowed;
}
.btn .btn-iconRight {
  margin: 0 0 0 9px;
  position: relative;
  top: -2px;
}
.btn .btn-iconLeft {
  margin: 0 9px 0 0;
  position: relative;
  top: -2px;
}
.btn .btn-icon-fa {
  top: 0 !important;
}

.modal-dialog {
  max-width: 600px;
  width: 100%;
}
.modal-dialog .btn {
  max-width: 170px;
  width: 100%;
}

.modal-xl {
  max-width: 1000px;
}

.modal-lg {
  max-width: 800px;
}

.modal-header {
  border-bottom: none;
  font-size: 24px;
  font-weight: 500;
  padding: 2rem 1rem 1rem 1rem;
}

.modal-content {
  font-size: 18px;
}

.modal-footer {
  font-size: 16px;
  justify-content: center;
  border-top: none;
  padding: 0.75rem 1rem 2rem 1rem;
}

.accept-term-modal .content-term {
  max-height: 600px;
  overflow: auto;
  border: 1px solid #DCDFE6;
}

@media (max-width: 640px) {
  .modal-header {
    font-size: 20px;
  }

  .modal-content {
    font-size: 16px;
  }
}
.custom-control {
  display: inline-flex;
}

.custom-control .custom-control-description {
  cursor: pointer;
  word-break: break-all;
}

.custom-control .custom-control-indicator {
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  display: block;
  left: 0;
  position: absolute;
  top: calc(50% - 10px);
  cursor: pointer;
}

.custom-control.custom-checkbox .custom-control-indicator {
  border-radius: 2px;
  border: 2px #303133 solid;
  width: 18px;
  height: 18px;
  top: 0;
}

.custom-control.custom-checkbox .custom-control-input.form-control-danger ~ .custom-control-indicator {
  border: 2px #F56C6C solid;
}

.custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
  background: url(/images/iconCheckBox.svg?a4adc961a910c44b89e24b0887fb2449) no-repeat 50%;
  border: 2px #62C3E9 solid;
}

.custom-control.custom-checkbox .custom-control-input:disabled ~ .custom-control-indicator {
  background-color: #ddd;
  border: 2px #ccc solid;
  cursor: not-allowed;
}

.custom-control.custom-radio .custom-control-indicator {
  border-radius: 50%;
  border: 2px #303133 solid;
  width: 18px;
  height: 18px;
}

.custom-control.custom-radio .custom-control-input.form-control-danger ~ .custom-control-indicator {
  border: 2px #F56C6C solid;
}

.custom-control.custom-radio .custom-control-input:checked ~ .custom-control-indicator {
  background: url(/images/ellipse-radio-check.svg?5afdc26412e879f903db366572dac2f8) no-repeat 50%;
  border: 2px #62C3E9 solid;
}

.custom-control.custom-radio .custom-control-input:disabled ~ .custom-control-indicator {
  background-color: #ddd;
  border: 2px #ccc solid;
  cursor: not-allowed;
}

a.link {
  transition: 200ms all;
  text-decoration: none;
  color: #62c3e9 !important;
}
a.link:hover {
  color: #4cb8e3 !important;
}

a.link-href {
  transition: 200ms all;
  text-decoration: underline;
  color: #62c3e9 !important;
}
a.link-href:hover {
  color: #4cb8e3 !important;
}

a[disabled] {
  cursor: no-drop;
  pointer-events: none;
  opacity: 0.5;
}

.loader-wrap {
  display: none;
}
.loader-wrap .loader-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: calc(100% + 60px);
  z-index: 1031;
  top: -60px;
}
.loader-wrap .loader {
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  position: fixed;
  top: calc(50% - 60px);
  left: 50%;
  z-index: 1032;
  transform: translate(-50%, -50%);
}
.loader-wrap .loader-icon {
  color: #777;
}
.loader-wrap .loader-text {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 14px;
}
.loader-wrap .loader-svg {
  width: 32px;
  height: 32px;
  display: block;
}
.loader-wrap .loader-svg path {
  fill: #777;
}
.loader-wrap-bg .loader-overlay {
  display: block;
}
.loader-wrap.loader-show {
  display: block;
}

.text-link:hover {
  color: #4cb8e3 !important;
  cursor: pointer;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre !important;
}

.text-color-malibu {
  color: #62c3e9;
}

.text-color-gray {
  color: #c0c4cc;
}

.link-no-content::after {
  content: none !important;
}

.white-space-pre-wrap {
  white-space: pre-wrap;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-none {
  cursor: none;
}

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

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

.text-decoration-overline, .text-decoration-overline:hover {
  text-decoration: overline;
}

.text-decoration-line-through, .text-decoration-line-through:hover {
  text-decoration: line-through;
}

.text-decoration-solid, .text-decoration-solid:hover {
  -webkit-text-decoration: solid;
          text-decoration: solid;
}

.text-decoration-double, .text-decoration-double:hover {
  -webkit-text-decoration: double;
          text-decoration: double;
}

.text-decoration-dotted, .text-decoration-dotted:hover {
  -webkit-text-decoration: dotted;
          text-decoration: dotted;
}

.text-decoration-dashed, .text-decoration-dashed:hover {
  -webkit-text-decoration: dashed;
          text-decoration: dashed;
}

.text-decoration-wavy, .text-decoration-wavy:hover {
  -webkit-text-decoration: wavy;
          text-decoration: wavy;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th,
table tr td {
  border-top: solid 1px #e5f5fb;
  border-bottom: solid 1px #e5f5fb;
}

.tooltip .tooltip-inner {
  max-width: 450px;
  text-align: left;
}

.tox-statusbar {
  display: none !important;
}

.dataRow {
  display: flex;
}
.dataRow .dataRow-col {
  width: 48%;
}
.dataRow .second {
  margin-left: 20px;
}

.btn-download-file-system {
  visibility: hidden;
}
