/* Scss Document */
:root {
  --px: 30px;
  --font12: 12px;
  --font13: 13px;
  --font14: 14px;
  --font15: 15px;
  --font16: 16px;
  --font17: 17px;
  --font18: 18px;
  --font20: 20px;
}

.fz12 {
  font-size: var(--font12);
}

.fz13 {
  font-size: var(--font13);
}

.fz14 {
  font-size: var(--font14);
}

.fz15 {
  font-size: var(--font15);
}

.fz16 {
  font-size: var(--font16);
}

.fz17 {
  font-size: var(--font17);
}

.fz18 {
  font-size: var(--font18);
}

.fz20 {
  font-size: var(--font20);
}

.tetx-center {
  text-align: center;
}

.fw300 {
  font-weight: 300;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.lh {
  line-height: 1;
}

.lh110 {
  line-height: 110%;
}

.lh120 {
  line-height: 120%;
}

.lh130 {
  line-height: 130%;
}

.lh140 {
  line-height: 140%;
}

.lh150 {
  line-height: 150%;
}

.lh160 {
  line-height: 160%;
}

.lh170 {
  line-height: 170%;
}

.lh180 {
  line-height: 180%;
}

.lh190 {
  line-height: 190%;
}

.lh200 {
  line-height: 200%;
}

.db {
  display: block;
}

.dib {
  display: inline-block;
}

.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dif {
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.fxs {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fxg {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.fxww {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ais {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.aie {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.jcsb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.jcfs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.jcfe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

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

.hide {
  display: none;
}

.bg-05 {
  background-color: #054588;
}

.bg-blue-049 {
  background-color: rgba(0, 49, 102, 0.5);
}

.bg-green {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #92c91d), to(#9ada0f));
  background-image: linear-gradient(0deg, #92c91d 0, #9ada0f);
  -webkit-box-shadow: 0 10px 20px rgba(135, 187, 24, 0.4);
          box-shadow: 0 10px 20px rgba(135, 187, 24, 0.4);
}

a.bg-green:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(op0, #92c91d), to(#9ada0f));
  background-image: linear-gradient(0deg, #92c91d op0, #9ada0f);
  -webkit-box-shadow: 0 20px 20px rgba(135, 187, 24, 0.4);
          box-shadow: 0 20px 20px rgba(135, 187, 24, 0.4);
}

.bg-orang {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fa5e00), to(#fa7c00));
  background-image: linear-gradient(0deg, #fa5e00 0, #fa7c00);
  -webkit-box-shadow: 0 10px 15px rgba(250, 65, 0, 0.4);
          box-shadow: 0 10px 15px rgba(250, 65, 0, 0.4);
}

a.bg-orang:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fa5e00), to(#fa5e00));
  background-image: linear-gradient(0deg, #fa5e00 0, #fa5e00);
}

.bg-blue {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #428cdc), color-stop(97%, #509aea), to(#509aea));
  background-image: linear-gradient(180deg, #428cdc 0, #509aea 97%, #509aea);
}

a.bg-blue {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #428cdc), color-stop(97%, #428cdc), to(#428cdc));
  background-image: linear-gradient(180deg, #428cdc 0, #428cdc 97%, #428cdc);
}

.bg-red {
  background-color: #F44333;
}

.bg-fff {
  background-color: #fff;
}

.text-11 {
  color: #1183d3;
}

.text-000 {
  color: #000;
}

.text-fff {
  color: #fff;
}

.text-orang {
  color: #fa550c;
}

.text-gray {
  color: #6b7d8e;
}

.no-under {
  text-decoration: none;
}

.ttu {
  text-transform: uppercase;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.block {
  display: block;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-60 {
  z-index: 60;
}

.z-70 {
  z-index: 70;
}

.z-80 {
  z-index: 80;
}

.z-90 {
  z-index: 90;
}

.z-100 {
  z-index: 100;
}

.op-10 {
  opacity: 0.1;
}

.op-20 {
  opacity: 0.2;
}

.op-30 {
  opacity: 0.3;
}

.op-40 {
  opacity: 0.4;
}

.op-50 {
  opacity: 0.5;
}

.op-60 {
  opacity: 0.6;
}

.op-70 {
  opacity: 0.7;
}

.op-80 {
  opacity: 0.8;
}

.op-90 {
  opacity: 0.9;
}

.round-5 {
  border-radius: 5px;
}

.round-6 {
  border-radius: 6px;
}

.round-7 {
  border-radius: 7px;
}

.round-8 {
  border-radius: 8px;
}

.round-9 {
  border-radius: 9px;
}

.round-10 {
  border-radius: 10px;
}

.round-11 {
  border-radius: 11px;
}

.round-12 {
  border-radius: 12px;
}

.round-13 {
  border-radius: 13px;
}

.round-14 {
  border-radius: 14px;
}

.round-15 {
  border-radius: 15px;
}

.round-20 {
  border-radius: 20px;
}

.round-20 {
  border-radius: 20px;
}

.round-full {
  border-radius: 100%;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

input[type=text],
input[type=tel],
input[type=email] {
  font-family: "Roboto";
  outline: none;
}

input[type=submit],
button {
  outline: none;
  cursor: pointer;
  font-family: "Roboto";
}

svg {
  display: block;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 1px;
}

.mb-2 {
  margin-bottom: 2px;
}

.mb-3 {
  margin-bottom: 3px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-7 {
  margin-bottom: 7px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-9 {
  margin-bottom: 9px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-11 {
  margin-bottom: 11px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-13 {
  margin-bottom: 13px;
}

.mb-14 {
  margin-bottom: 14px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 1px;
}

.mt-2 {
  margin-top: 2px;
}

.mt-3 {
  margin-top: 3px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-6 {
  margin-top: 6px;
}

.mt-7 {
  margin-top: 7px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-9 {
  margin-top: 9px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-1 {
  margin-left: 1px;
}

.ml-2 {
  margin-left: 2px;
}

.ml-3 {
  margin-left: 3px;
}

.ml-4 {
  margin-left: 4px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-7 {
  margin-left: 7px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-9 {
  margin-left: 9px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-12 {
  margin-left: 12px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-1 {
  margin-right: 1px;
}

.mr-2 {
  margin-right: 2px;
}

.mr-3 {
  margin-right: 3px;
}

.mr-4 {
  margin-right: 4px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-6 {
  margin-right: 6px;
}

.mr-7 {
  margin-right: 7px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-9 {
  margin-right: 9px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-12 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-1 {
  padding-bottom: 1px;
}

.pb-2 {
  padding-bottom: 2px;
}

.pb-3 {
  padding-bottom: 3px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-6 {
  padding-bottom: 6px;
}

.pb-7 {
  padding-bottom: 7px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-9 {
  padding-bottom: 9px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-11 {
  padding-bottom: 11px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pb-13 {
  padding-bottom: 13px;
}

.pb-14 {
  padding-bottom: 14px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-1 {
  padding-top: 1px;
}

.pt-2 {
  padding-top: 2px;
}

.pt-3 {
  padding-top: 3px;
}

.pt-4 {
  padding-top: 4px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-6 {
  padding-top: 6px;
}

.pt-7 {
  padding-top: 7px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-9 {
  padding-top: 9px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-1 {
  padding-left: 1px;
}

.pl-2 {
  padding-left: 2px;
}

.pl-3 {
  padding-left: 3px;
}

.pl-4 {
  padding-left: 4px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-6 {
  padding-left: 6px;
}

.pl-7 {
  padding-left: 7px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-9 {
  padding-left: 9px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-1 {
  padding-right: 1px;
}

.pr-2 {
  padding-right: 2px;
}

.pr-3 {
  padding-right: 3px;
}

.pr-4 {
  padding-right: 4px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-6 {
  padding-right: 6px;
}

.pr-7 {
  padding-right: 7px;
}

.pr-8 {
  padding-right: 8px;
}

.pr-9 {
  padding-right: 9px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.p-0 {
  padding-right: 0px;
}

.p-0 {
  padding: 0px;
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 1px;
}

.p-2 {
  padding: 2px;
}

.p-3 {
  padding: 3px;
}

.p-4 {
  padding: 4px;
}

.p-5 {
  padding: 5px;
}

.p-6 {
  padding: 6px;
}

.p-7 {
  padding: 7px;
}

.p-8 {
  padding: 8px;
}

.p-9 {
  padding: 9px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-30 {
  padding: 30px;
}

.p-35 {
  padding: 35px;
}

.p-40 {
  padding: 40px;
}

.p-45 {
  padding: 45px;
}

.p-50 {
  padding: 50px;
}

.p-60 {
  padding: 60px;
}

.p-65 {
  padding: 65px;
}

.p-70 {
  padding: 70px;
}

.p-75 {
  padding: 75px;
}

.p-80 {
  padding: 80px;
}

.p-85 {
  padding: 85px;
}

.p-90 {
  padding: 90px;
}

.p-95 {
  padding: 95px;
}

.p-100 {
  padding: 100px;
}

/* Scss Document */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

#page {
  position: relative;
}

a, img {
  outline: none;
}

* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Scss Document */
img {
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 17px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 15px;
}

h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
}

.clr:before,
.clr:after {
  content: " ";
  display: table;
  clear: both;
}

input::-webkit-input-placeholder {
  text-indent: 0px;
  -webkit-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input::-moz-placeholder {
  text-indent: 0px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:-moz-placeholder {
  text-indent: 0px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:-ms-input-placeholder {
  text-indent: 0px;
  -ms-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  text-indent: -500px;
  -webkit-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus::-moz-placeholder {
  text-indent: -500px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus:-moz-placeholder {
  text-indent: -500px;
  -moz-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input:focus:-ms-input-placeholder {
  text-indent: -500px;
  -ms-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
}

input[placeholder] {
  text-overflow: ellipsis;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
}

input:-moz-placeholder {
  text-overflow: ellipsis;
}

input:-ms-input-placeholder {
  text-overflow: ellipsis;
}

input[type=submit],
input[type=button],
button {
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Scss Document */
.text figure {
  margin-bottom: 25px;
}
.text img {
  max-width: 100% !important;
  height: auto !important;
}
.text ul {
  margin-bottom: 25px;
  list-style-type: square;
  list-style-position: inside;
}
.text ul ul {
  margin-top: 25px;
  margin-left: 15px;
}
.text ol {
  margin-bottom: 25px;
  margin-left: 0px;
  list-style-position: inside;
}
.text ul ul li {
  background-image: none;
  padding-left: 0px;
  list-style-type: square;
}
.text li + li {
  margin-top: 5px;
}
.text p {
  margin-bottom: 25px;
}
.text p:last-child {
  margin-bottom: 0;
}
.text table {
  margin-bottom: 25px;
  background-color: #fff;
  border-collapse: collapse;
  width: 100%;
}
.text table tr:nth-child(2n+2) {
  background-color: rgba(238, 238, 238, 0.42);
}
.text table tr:hover {
  background-color: rgba(238, 238, 238, 0.8);
}
.text table th {
  background-color: #30A2D9;
  padding: 15px 10px;
  color: #fff;
  border: 1px solid #fff;
}
.text table th p {
  margin-bottom: 0;
}
.text table td {
  padding: 10px;
  border: 1px solid #fff;
}
.text table td p {
  margin-bottom: 0;
}
.text blockquote {
  margin-bottom: 25px;
  color: #fff;
  background-color: #30A2D9;
  padding: 10px;
}
.text blockquote p {
  margin-bottom: 0px;
}

body {
  color: #000;
  font-family: "Roboto";
  font-size: 14px;
  background-color: #dde4ec;
}

#page {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  min-height: 100vh;
}

.page_inner {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.wrap {
  max-width: 100%;
  min-width: 300px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

.wrap_2 {
  max-width: 1280px;
  min-width: 300px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.head-top {
  color: #fff;
}

.h-40 {
  height: 40px;
}

.box-201 a:hover path {
  fill: #fff;
}
.box-201 svg {
  width: auto;
  height: 20px;
}
.box-201 path {
  fill: #428cdc;
}

.svg-20 svg {
  width: auto;
  height: 20px;
}
.svg-20 path {
  fill: #428cdc;
}

.box-a22 li:nth-child(1n+2) {
  border-left: 2px solid #003266;
}

.arrow svg {
  display: block;
  width: auto;
  height: 10px;
}
.arrow path {
  fill: #fff;
}

.flag svg {
  width: auto;
  height: 20px;
  border-radius: 100%;
}

.button-salle {
  -webkit-box-shadow: 0 11px 27px rgba(66, 140, 220, 0.63);
          box-shadow: 0 11px 27px rgba(66, 140, 220, 0.63);
  border-radius: 20px;
  background-color: #428cdc;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #428cdc), to(#0992af));
  background-image: linear-gradient(0deg, #428cdc 0, #0992af);
}
.button-salle svg {
  width: auto;
  height: 20px;
}
.button-salle path {
  fill: #fff;
}

#page {
  padding-top: 64px;
}

.header-content {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0, 50, 102, 0)), color-stop(73%, var(--color-second-blue)), color-stop(98%, var(--color-second-blue)));
  background-image: linear-gradient(0deg, rgba(0, 50, 102, 0) 0, var(--color-second-blue) 73%, var(--color-second-blue) 98%);
  background-color: #0a519e;
  padding: 10px 0;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.logo img {
  display: block;
  width: auto;
  height: 40px;
}

.menu-main a {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  padding: 0 20px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menu-main a:hover {
  color: #ffb801;
}

.link-bonus {
  border-radius: 20px;
  border: 2px solid #ffb801;
}
.link-bonus svg {
  width: auto;
  height: 18px;
}
.link-bonus path {
  fill: #ffb801;
}

.link-aviator svg {
  width: auto;
  height: 18px;
}
.link-aviator path {
  fill: #e63f6d;
}

.content {
  margin-left: 20px;
  margin-right: 20px;
}

.col-left {
  position: fixed;
  left: 20px;
  top: 140px;
  height: calc(100% - 160px);
  width: 240px;
}

.col-right {
  position: fixed;
  right: 20px;
  top: 140px;
  height: calc(100% - 140px);
  width: 300px;
}

.menu-left {
  background-color: #003266;
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
}
.menu-left .inner {
  overflow-y: auto;
  height: 100%;
}
.menu-left .inner::-webkit-scrollbar {
  width: 2px;
}
.menu-left .inner::-webkit-scrollbar-track {
  background: #fff;
}
.menu-left .inner::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.menu-left > .inner > ul > li:nth-child(1n+2) {
  border-top: 1px solid #043e7d;
}
.menu-left > .inner > ul > li .icon-blue path {
  fill: #1183d3;
}
.menu-left a {
  padding: 10px;
  text-transform: uppercase;
}
.menu-left .icon {
  margin-right: 10px;
}
.menu-left .icon svg {
  width: 20px;
  height: auto;
}
.menu-left li li:nth-child(1n+2) {
  border-top: 1px solid #e8ecf1;
}
.menu-left li li a:hover {
  color: #fa4d00;
}
.menu-left li ul {
  border-radius: 15px;
}

.cupon {
  border-radius: 20px;
  padding: 1px;
  margin-top: -15px;
  position: relative;
  z-index: 2;
}
.cupon .name {
  padding: 10px 15px;
  text-transform: uppercase;
}
.cupon .name svg {
  width: 20px;
  height: auto;
}

.box-299 {
  background-color: #e8ecf1;
  padding: 20px 10px;
}
.box-299 svg {
  width: 40px;
  height: auto;
}
.box-299 path {
  fill: #9ea7b2;
}

.center {
  text-align: center;
}

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

.box-929 {
  padding: 20px;
}
.box-929 a {
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  border-radius: 20px;
}

article {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
}

.info-box {
  margin-bottom: 40px;
  color: #211E1E;
  line-height: 1.4;
  padding: 35px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-box-danger {
  background-color: #f8d7da;
}
.info-box-danger:before {
  content: "";
  display: block;
  background-image: url(../images/danger.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.info-box-info {
  background-color: #d1ecf1;
}
.info-box-info:before {
  content: "";
  display: block;
  background-image: url(../images/info.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.info-box-success {
  background-color: #fff3cd;
}
.info-box-success:before {
  content: "";
  display: block;
  background-image: url(../images/warning.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.info-box-warning {
  background-color: #d4edda;
}
.info-box-warning:before {
  content: "";
  display: block;
  background-image: url(../images/success.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.btn {
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


/* Scss Document */
@media (max-width: 1400px) {
  .head-top .mr-20 {
    margin-right: 10px;
  }
  .menu-main a {
    font-size: 14px;
    padding: 0 10px;
  }
}
@media (max-width: 1200px) {
  .head-top-right {
    margin-right: 20px;
  }
  .col-right {
    display: none;
  }
  .content {
    margin-right: 20px;
  }
  .logo img {
    height: 30px;
  }
}
@media (max-width: 992px) {
  .head {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .open-menu {
    margin-left: 20px;
  }
  .open-menu svg {
    display: block;
    width: auto;
    height: 25px;
  }
  .header-content {
    padding: 15px 0;
  }
  .header-content a.mr-20 {
    margin-right: 0;
  }
  .head-top-left a {
    font-size: 14px;
    padding: 8px 15px;
  }
  .menu-main {
    display: none;
  }
  .show_992 {
    display: block;
  }
  .hide_992 {
    display: none;
  }
}
@media (max-width: 550px) {
  .info-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .info-box:before {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .show_550 {
    display: block;
  }
  .hide_550 {
    display: none;
  }
}
.text .image-style-align-center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
