@charset "utf-8";
body, html {
  width: 100%
}

body {
  font-size: 14px;
  line-height: 140%;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  transition: .5s
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

body, div, fieldset, form, h1, h2, h3, h4, h5, h6, img, li, ol, p, table, td, tr, ul {
  margin: 0;
  padding: 0;
}

li, ol, ul {
  list-style: none
}

dd, dl, dt {
  margin: 0;
  padding: 0
}

p {
  line-height: 1.5;
}

img {
  border: 0 none;
  vertical-align: middle
}

a {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  text-decoration: none !important;
}


.left0 {
  left: 0 !important;
  right: auto !important
}

.top0 {
  top: 0 !important;
  bottom: auto !important;
}

.top5 {
  top: 5px !important;
  bottom: auto !important;
}

.right0 {
  right: 0 !important;
  left: auto !important
}

.side-fixed {
  position: fixed;
  top: 0;
  z-index: 99;
  background: #fff;
  width: 100%
}

.top-fixed, .side-fixed {
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  transition: .5s;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  animation: fade-in;
  animation-duration: .5s;
  -webkit-animation: fade-in .5s;
}

.fadeInDown, #nav-signed {
  -webkit-animation: fadeInDown .5s .2s ease both;
  -moz-animation: fadeInDown .5s .2s ease both;
}

.fade-in {
  background: rgba(0, 0, 0, 0.2);
  animation: fade-in;
  animation-duration: .3s;
  -webkit-animation: fade-in .3s;
}

.scrollbar::-webkit-scrollbar {
  width: 4px;
  background-color: #f5f5f5;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: #ccc;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

/* container */
.container {
  position: relative;
  margin-right: auto;
  margin-left: auto
}

.row {
  position: relative;
  margin: 0;
  padding: 0
}

.static {
  position: static !important;
}

.pointer {
  cursor: pointer
}

.hidden {
  overflow: hidden !important
}

.relative {
  position: relative
}

.fixed {
  position: fixed
}

.show, .block {
  display: block !important
}

.inline-block {
  display: inline-block !important
}

.hide, .visible-inline-lg, .visible-inline-md, .visible-inline-mi, .visible-inline-sm, .visible-inline-xs, .visible-lg, .visible-md, .visible-mi, .visible-sm, .visible-xs {
  display: none !important
}

/* form */
select {
  cursor: pointer;
  border: none;
  outline: 0
}

input, textarea {
  outline: medium none;
  outline: 0;
  -webkit-tap-highlight-color: transparent
}

input.btn, input.form-control {
  outline: 0;
  -webkit-appearance: none
}

input[type=checkbox] {
  vertical-align: 20px
}

.form-control {
  display: block;
  width: 100%;
  height: 35px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  background-color: #F5F5F5;
  color: #999999;
  border: 1px solid #eee;
}

.input {
  height: 35px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  background-color: #F5F5F5;
  color: #999999;
  border: 1px solid #eee;
}

textarea.form-control {
  height: auto;
  padding: 10px
}

.form-control.verify {
  width: 90px;
  text-align: center;
  margin-right: 10px;
  display: inline-block
}

textarea {
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: #fa6567;
  -webkit-box-shadow: inset 0 1px 1px rgba(250, 101, 103, .075), 0 0 8px rgba(250, 101, 103, .6);
}

/* text */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  font-family: inherit;
}

h1 {
  font-size: 36px
}

h2 {
  font-size: 32px
}

h3 {
  font-size: 24px
}

h4 {
  font-size: 18px
}

h5 {
  font-size: 16px
}

h6 {
  font-size: 14px
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left
}

.text-right {
  text-align: right
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-overflow {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap
}

.txt-hidden {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.txt-hid1 {
  -webkit-line-clamp: 1;
}

.txt-hid2 {
  -webkit-line-clamp: 2;
}

.txt-hid3 {
  -webkit-line-clamp: 3;
}

.txt-hid4 {
  -webkit-line-clamp: 4;
}

.txt-line22 {
  line-height: 22px;
}

.txt-line25 {
  line-height: 25px;
}

.txt-line28 {
  line-height: 28px;
}

.txt-line32 {
  line-height: 32px;
}

/* font */
.font12 {
  font-size: 12px !important
}

.font13 {
  font-size: 13px !important
}

.font14 {
  font-size: 14px !important
}

.font15 {
  font-size: 15px !important
}

.font16 {
  font-size: 16px !important
}

.font18 {
  font-size: 18px !important
}

.font20 {
  font-size: 20px !important
}

.font22 {
  font-size: 22px !important
}

.font24 {
  font-size: 24px !important
}

.font25 {
  font-size: 25px !important
}

.font40 {
  font-size: 40px !important
}

.font-bold {
  font-weight: 700 !important
}

/* line */
.spot {
  display: inline-block;
  margin-right: 5px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid;
}

.split-line {
  display: inline-block;
  margin-left: 12px;
  margin-right: 12px;
  width: 1px;
  height: 14px;
  vertical-align: -2px;
}

.top-line, .top-line-dot, .bottom-line, .bottom-line-dot {
  position: relative;
}

.top-line:before, .top-line-dot:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
}

.bottom-line:after, .bottom-line-dot:before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
}

.top-line:before {
  border-top: 1px solid;
}

.bottom-line:after {
  border-bottom: 1px solid;
}

.top-line-dot:before {
  border-top: 1px dotted;
}

.bottom-line-dot:before {
  border-bottom: 1px dotted;
}

/* border */
.border {
  border: 1px solid;
}

.border-0 {
  border: none;
}

.border-2 {
  border: 2px solid;
}

.border-3 {
  border: 3px solid;
}

.border-4 {
  border: 4px solid;
}

.border-5 {
  border: 5px solid;
}

/* radius */
.radius-0 {
  border-radius: 0px !important;
}

.radius-2 {
  border-radius: 2px;
}

.radius-4 {
  border-radius: 4px;
}

.radius-6 {
  border-radius: 6px;
}

.radius-20 {
  border-radius: 20px;
}

.radius-50 {
  border-radius: 50% !important;
}

.radius-80 {
  border-radius: 80% !important;
}

.radius-100 {
  border-radius: 100% !important;
}

/* btn */
.btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 12px;
}

.btn.btn-xs {
  padding: 4px 15px;
}

.btn.btn-sm {
  padding: 6px 20px;
}

.btn.btn-md {
  padding: 8px 25px;
}

.btn.btn-lg {
  padding: 12px 30px;
}

.btn.btn-block {
  display: block;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
}

.btn.disabled {
  cursor: not-allowed;
}

/* padding margin*/

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.m-10 {
  margin: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-10 {
  padding-right: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.p-10 {
  padding: 10px;
}

/* flex */
.dfr {
  display: flex;
  flex-direction: row;
}

.dfr-X-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.dfr-Y-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.dfr-XY-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.dfc {
  display: flex;
  flex-direction: column;
}

.dfc-X-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dfc-Y-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dfc-XY-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-1 {
  width: 0;
  flex: 1;
}

.flex-wrap{
  flex-wrap: wrap;
}

.flex-nowrap{
  flex-wrap: nowrap;
}

.flex-jc-sb{
  justify-content: space-between;
}

/* col */
.col-lg-1, .col-lg-10, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-pd, .col-sm-1, .col-sm-10, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  position: relative;
  min-height: 1px;
  padding: 10px
}

/*.col-xs-1, .col-xs-10, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-wide-1, .col-xs-wide-10, .col-xs-wide-15, .col-xs-wide-2, .col-xs-wide-25, .col-xs-wide-3, .col-xs-wide-35, .col-xs-wide-4, .col-xs-wide-45, .col-xs-wide-5, .col-xs-wide-55, .col-xs-wide-6, .col-xs-wide-65, .col-xs-wide-7, .col-xs-wide-75, .col-xs-wide-8, .col-xs-wide-85, .col-xs-wide-9, .col-xs-wide-95 {}*/

.col-xs-10 {
  width: 10%
}

.col-xs-9 {
  width: 11.1111111%
}

.col-xs-8 {
  width: 12.5%
}

.col-xs-7 {
  width: 14.2857143%
}

.col-xs-6 {
  width: 16.6666667%
}

.col-xs-5 {
  width: 20%
}

.col-xs-4 {
  width: 25%
}

.col-xs-3 {
  width: 33.3333333%
}

.col-xs-2 {
  width: 50%
}

.col-xs-1 {
  width: 100%
}

.col-xs-wide-10 {
  width: 10%
}

.col-xs-wide-9 {
  width: 90%
}

.col-xs-wide-8 {
  width: 80%
}

.col-xs-wide-7 {
  width: 70%
}

.col-xs-wide-6 {
  width: 60%
}

.col-xs-wide-5 {
  width: 50%
}

.col-xs-wide-4 {
  width: 40%
}

.col-xs-wide-3 {
  width: 30%
}

.col-xs-wide-2 {
  width: 20%
}

.col-xs-wide-15 {
  width: 15%
}

.col-xs-wide-95 {
  width: 95%
}

.col-xs-wide-85 {
  width: 85%
}

.col-xs-wide-75 {
  width: 75%
}

.col-xs-wide-65 {
  width: 65%
}

.col-xs-wide-55 {
  width: 55%
}

.col-xs-wide-45 {
  width: 45%
}

.col-xs-wide-35 {
  width: 35%
}

.col-xs-wide-25 {
  width: 25%
}

.p-xs-20 {
  padding: 20px !important
}

.p-xs-10 {
  padding: 10px !important
}

.p-xs-5 {
  padding: 5px !important
}

.p-xs-0 {
  padding: 0 !important
}

.pt-xs-20 {
  padding-top: 20px !important
}

.pt-xs-10 {
  padding-top: 10px !important
}

.pt-xs-5 {
  padding-top: 5px !important
}

.pt-xs-0 {
  padding-top: 0 !important
}

.pb-xs-20 {
  padding-bottom: 20px !important
}

.pb-xs-10 {
  padding-bottom: 10px !important
}

.pb-xs-5 {
  padding-bottom: 5px !important
}

.pb-xs-0 {
  padding-bottom: 0 !important
}

.pl-xs-20 {
  padding-left: 20px !important
}

.pl-xs-10 {
  padding-left: 10px !important
}

.pl-xs-5 {
  padding-left: 5px !important
}

.pl-xs-0 {
  padding-left: 0 !important
}

.pr-xs-20 {
  padding-right: 20px !important
}

.pr-xs-10 {
  padding-right: 10px !important
}

.pr-xs-5 {
  padding-right: 5px !important
}

.pr-xs-0 {
  padding-right: 0 !important
}

.m-xs-20 {
  margin: 20px !important
}

.m-xs-10 {
  margin: 10px !important
}

.m-xs-5 {
  margin: 5px !important
}

.m-xs-0 {
  margin: 0 !important
}

.mt-xs-20 {
  margin-top: 20px !important
}

.mt-xs-10 {
  margin-top: 10px !important
}

.mt-xs-5 {
  margin-top: 5px !important
}

.mt-xs-0 {
  margin-top: 0 !important
}

.mb-xs-20 {
  margin-bottom: 20px !important
}

.mb-xs-10 {
  margin-bottom: 10px !important
}

.mb-xs-5 {
  margin-bottom: 5px !important
}

.mb-xs-0 {
  margin-bottom: 0 !important
}

.ml-xs-20 {
  margin-left: 20px !important
}

.ml-xs-10 {
  margin-left: 10px !important
}

.ml-xs-5 {
  margin-left: 5px !important
}

.ml-xs-0 {
  margin-left: 0 !important
}

.mr-xs-20 {
  margin-right: 20px !important
}

.mr-xs-10 {
  margin-right: 10px !important
}

.mr-xs-5 {
  margin-right: 5px !important
}

.mr-xs-0 {
  margin-right: 0 !important
}

@media (min-width: 768px) {
  /*.col-sm-1, .col-sm-10, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-wide-1, .col-sm-wide-10, .col-sm-wide-15, .col-sm-wide-2, .col-sm-wide-25, .col-sm-wide-3, .col-sm-wide-35, .col-sm-wide-4, .col-sm-wide-45, .col-sm-wide-5, .col-sm-wide-55, .col-sm-wide-6, .col-sm-wide-65, .col-sm-wide-7, .col-sm-wide-75, .col-sm-wide-8, .col-sm-wide-85, .col-sm-wide-9, .col-sm-wide-95 {}*/

  .col-sm-10 {
    width: 10%
  }

  .col-sm-9 {
    width: 11.1111111%
  }

  .col-sm-8 {
    width: 12.5%
  }

  .col-sm-7 {
    width: 14.2857143%
  }

  .col-sm-6 {
    width: 16.6666667%
  }

  .col-sm-5 {
    width: 20%
  }

  .col-sm-4 {
    width: 25%
  }

  .col-sm-3 {
    width: 33.3333333%
  }

  .col-sm-2 {
    width: 50%
  }

  .col-sm-1 {
    width: 100%
  }

  .col-sm-wide-10 {
    width: 10%
  }

  .col-sm-wide-9 {
    width: 90%
  }

  .col-sm-wide-8 {
    width: 80%
  }

  .col-sm-wide-7 {
    width: 70%
  }

  .col-sm-wide-6 {
    width: 60%
  }

  .col-sm-wide-5 {
    width: 50%
  }

  .col-sm-wide-4 {
    width: 40%
  }

  .col-sm-wide-3 {
    width: 30%
  }

  .col-sm-wide-2 {
    width: 20%
  }

  .col-sm-wide-15 {
    width: 15%
  }

  .col-sm-wide-95 {
    width: 95%
  }

  .col-sm-wide-85 {
    width: 85%
  }

  .col-sm-wide-75 {
    width: 75%
  }

  .col-sm-wide-65 {
    width: 65%
  }

  .col-sm-wide-55 {
    width: 55%
  }

  .col-sm-wide-45 {
    width: 45%
  }

  .col-sm-wide-35 {
    width: 35%
  }

  .col-sm-wide-25 {
    width: 25%
  }

  .p-sm-20 {
    padding: 20px !important
  }

  .p-sm-10 {
    padding: 10px !important
  }

  .p-sm-5 {
    padding: 5px !important
  }

  .p-sm-0 {
    padding: 0 !important
  }

  .pt-sm-20 {
    padding-top: 20px !important
  }

  .pt-sm-10 {
    padding-top: 10px !important
  }

  .pt-sm-5 {
    padding-top: 5px !important
  }

  .pt-sm-0 {
    padding-top: 0 !important
  }

  .pb-sm-20 {
    padding-bottom: 20px !important
  }

  .pb-sm-10 {
    padding-bottom: 10px !important
  }

  .pb-sm-5 {
    padding-bottom: 5px !important
  }

  .pb-sm-0 {
    padding-bottom: 0 !important
  }

  .pl-sm-20 {
    padding-left: 20px !important
  }

  .pl-sm-10 {
    padding-left: 10px !important
  }

  .pl-sm-5 {
    padding-left: 5px !important
  }

  .pl-sm-0 {
    padding-left: 0 !important
  }

  .pr-sm-20 {
    padding-right: 20px !important
  }

  .pr-sm-10 {
    padding-right: 10px !important
  }

  .pr-sm-5 {
    padding-right: 5px !important
  }

  .pr-sm-0 {
    padding-right: 0 !important
  }

  .m-sm-20 {
    margin: 20px !important
  }

  .m-sm-10 {
    margin: 10px !important
  }

  .m-sm-5 {
    margin: 5px !important
  }

  .m-sm-0 {
    margin: 0 !important
  }

  .mt-sm-20 {
    margin-top: 20px !important
  }

  .mt-sm-10 {
    margin-top: 10px !important
  }

  .mt-sm-5 {
    margin-top: 5px !important
  }

  .mt-sm-0 {
    margin-top: 0 !important
  }

  .mb-sm-20 {
    margin-bottom: 20px !important
  }

  .mb-sm-10 {
    margin-bottom: 10px !important
  }

  .mb-sm-5 {
    margin-bottom: 5px !important
  }

  .mb-sm-0 {
    margin-bottom: 0 !important
  }

  .ml-sm-20 {
    margin-left: 20px !important
  }

  .ml-sm-10 {
    margin-left: 10px !important
  }

  .ml-sm-5 {
    margin-left: 5px !important
  }

  .ml-sm-0 {
    margin-left: 0 !important
  }

  .mr-sm-20 {
    margin-right: 20px !important
  }

  .mr-sm-10 {
    margin-right: 10px !important
  }

  .mr-sm-5 {
    margin-right: 5px !important
  }

  .mr-sm-0 {
    margin-right: 0 !important
  }
}

@media (min-width: 992px) {
  /*.col-md-1, .col-md-10, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-wide-1, .col-md-wide-10, .col-md-wide-15, .col-md-wide-2, .col-md-wide-25, .col-md-wide-3, .col-md-wide-35, .col-md-wide-4, .col-md-wide-45, .col-md-wide-5, .col-md-wide-55, .col-md-wide-6, .col-md-wide-65, .col-md-wide-7, .col-md-wide-75, .col-md-wide-8, .col-md-wide-85, .col-md-wide-9, .col-md-wide-95 {}*/

  .col-md-10 {
    width: 10%
  }

  .col-md-9 {
    width: 11.1111111%
  }

  .col-md-8 {
    width: 12.5%
  }

  .col-md-7 {
    width: 14.2857143%
  }

  .col-md-6 {
    width: 16.6666667%
  }

  .col-md-5 {
    width: 20%
  }

  .col-md-4 {
    width: 25%
  }

  .col-md-3 {
    width: 33.3333333%
  }

  .col-md-2 {
    width: 50%
  }

  .col-md-1 {
    width: 100%
  }

  .col-md-wide-10 {
    width: 10%
  }

  .col-md-wide-9 {
    width: 90%
  }

  .col-md-wide-8 {
    width: 80%
  }

  .col-md-wide-7 {
    width: 70%
  }

  .col-md-wide-6 {
    width: 60%
  }

  .col-md-wide-5 {
    width: 50%
  }

  .col-md-wide-4 {
    width: 40%
  }

  .col-md-wide-3 {
    width: 30%
  }

  .col-md-wide-2 {
    width: 20%
  }

  .col-md-wide-15 {
    width: 15%
  }

  .col-md-wide-95 {
    width: 95%
  }

  .col-md-wide-85 {
    width: 85%
  }

  .col-md-wide-75 {
    width: 75%
  }

  .col-md-wide-65 {
    width: 65%
  }

  .col-md-wide-55 {
    width: 55%
  }

  .col-md-wide-45 {
    width: 45%
  }

  .col-md-wide-35 {
    width: 35%
  }

  .col-md-wide-25 {
    width: 25%
  }

  .p-md-20 {
    padding: 20px !important
  }

  .p-md-10 {
    padding: 10px !important
  }

  .p-md-5 {
    padding: 5px !important
  }

  .p-md-0 {
    padding: 0 !important
  }

  .pt-md-20 {
    padding-top: 20px !important
  }

  .pt-md-10 {
    padding-top: 10px !important
  }

  .pt-md-5 {
    padding-top: 5px !important
  }

  .pt-md-0 {
    padding-top: 0 !important
  }

  .pb-md-20 {
    padding-bottom: 20px !important
  }

  .pb-md-10 {
    padding-bottom: 10px !important
  }

  .pb-md-5 {
    padding-bottom: 5px !important
  }

  .pb-md-0 {
    padding-bottom: 0 !important
  }

  .pl-md-20 {
    padding-left: 20px !important
  }

  .pl-md-10 {
    padding-left: 10px !important
  }

  .pl-md-5 {
    padding-left: 5px !important
  }

  .pl-md-0 {
    padding-left: 0 !important
  }

  .pr-md-20 {
    padding-right: 20px !important
  }

  .pr-md-10 {
    padding-right: 10px !important
  }

  .pr-md-5 {
    padding-right: 5px !important
  }

  .pr-md-0 {
    padding-right: 0 !important
  }

  .m-md-20 {
    margin: 20px !important
  }

  .m-md-10 {
    margin: 10px !important
  }

  .m-md-5 {
    margin: 5px !important
  }

  .m-md-0 {
    margin: 0 !important
  }

  .mt-md-20 {
    margin-top: 20px !important
  }

  .mt-md-10 {
    margin-top: 10px !important
  }

  .mt-md-5 {
    margin-top: 5px !important
  }

  .mt-md-0 {
    margin-top: 0 !important
  }

  .mb-md-20 {
    margin-bottom: 20px !important
  }

  .mb-md-10 {
    margin-bottom: 10px !important
  }

  .mb-md-5 {
    margin-bottom: 5px !important
  }

  .mb-md-0 {
    margin-bottom: 0 !important
  }

  .ml-md-20 {
    margin-left: 20px !important
  }

  .ml-md-10 {
    margin-left: 10px !important
  }

  .ml-md-5 {
    margin-left: 5px !important
  }

  .ml-md-0 {
    margin-left: 0 !important
  }

  .mr-md-20 {
    margin-right: 20px !important
  }

  .mr-md-10 {
    margin-right: 10px !important
  }

  .mr-md-5 {
    margin-right: 5px !important
  }

  .mr-md-0 {
    margin-right: 0 !important
  }
}

@media (min-width: 1200px) {
  /*.col-lg-1, .col-lg-10, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-wide-1, .col-lg-wide-10, .col-lg-wide-15, .col-lg-wide-2, .col-lg-wide-25, .col-lg-wide-3, .col-lg-wide-35, .col-lg-wide-4, .col-lg-wide-45, .col-lg-wide-5, .col-lg-wide-55, .col-lg-wide-6, .col-lg-wide-65, .col-lg-wide-7, .col-lg-wide-75, .col-lg-wide-8, .col-lg-wide-85, .col-lg-wide-9, .col-lg-wide-95 {}*/

  .col-lg-10 {
    width: 10%
  }

  .col-lg-9 {
    width: 11.1111111%
  }

  .col-lg-8 {
    width: 12.5%
  }

  .col-lg-7 {
    width: 14.2857143%
  }

  .col-lg-6 {
    width: 16.6666667%
  }

  .col-lg-5 {
    width: 20%
  }

  .col-lg-4 {
    width: 25%
  }

  .col-lg-3 {
    width: 33.3333333%
  }

  .col-lg-2 {
    width: 50%
  }

  .col-lg-1 {
    width: 100%
  }

  .col-lg-wide-10 {
    width: 10%
  }

  .col-lg-wide-9 {
    width: 90%
  }

  .col-lg-wide-8 {
    width: 80%
  }

  .col-lg-wide-7 {
    width: 70%
  }

  .col-lg-wide-6 {
    width: 60%
  }

  .col-lg-wide-5 {
    width: 50%
  }

  .col-lg-wide-4 {
    width: 40%
  }

  .col-lg-wide-3 {
    width: 30%
  }

  .col-lg-wide-2 {
    width: 20%
  }

  .col-lg-wide-15 {
    width: 15%
  }

  .col-lg-wide-95 {
    width: 95%
  }

  .col-lg-wide-85 {
    width: 85%
  }

  .col-lg-wide-75 {
    width: 75%
  }

  .col-lg-wide-65 {
    width: 65%
  }

  .col-lg-wide-55 {
    width: 55%
  }

  .col-lg-wide-45 {
    width: 45%
  }

  .col-lg-wide-35 {
    width: 35%
  }

  .col-lg-wide-25 {
    width: 25%
  }

  .p-lg-20 {
    padding: 20px !important
  }

  .p-lg-10 {
    padding: 10px !important
  }

  .p-lg-5 {
    padding: 5px !important
  }

  .p-lg-0 {
    padding: 0 !important
  }

  .pt-lg-20 {
    padding-top: 20px !important
  }

  .pt-lg-10 {
    padding-top: 10px !important
  }

  .pt-lg-5 {
    padding-top: 5px !important
  }

  .pt-lg-0 {
    padding-top: 0 !important
  }

  .pb-lg-20 {
    padding-bottom: 20px !important
  }

  .pb-lg-10 {
    padding-bottom: 10px !important
  }

  .pb-lg-5 {
    padding-bottom: 5px !important
  }

  .pb-lg-0 {
    padding-bottom: 0 !important
  }

  .pl-lg-20 {
    padding-left: 20px !important
  }

  .pl-lg-10 {
    padding-left: 10px !important
  }

  .pl-lg-5 {
    padding-left: 5px !important
  }

  .pl-lg-0 {
    padding-left: 0 !important
  }

  .pr-lg-20 {
    padding-right: 20px !important
  }

  .pr-lg-10 {
    padding-right: 10px !important
  }

  .pr-lg-5 {
    padding-right: 5px !important
  }

  .pr-lg-0 {
    padding-right: 0 !important
  }

  .m-lg-20 {
    margin: 20px !important
  }

  .m-lg-10 {
    margin: 10px !important
  }

  .m-lg-5 {
    margin: 5px !important
  }

  .m-lg-0 {
    margin: 0 !important
  }

  .mt-lg-20 {
    margin-top: 20px !important
  }

  .mt-lg-10 {
    margin-top: 10px !important
  }

  .mt-lg-5 {
    margin-top: 5px !important
  }

  .mt-lg-0 {
    margin-top: 0 !important
  }

  .mb-lg-20 {
    margin-bottom: 20px !important
  }

  .mb-lg-10 {
    margin-bottom: 10px !important
  }

  .mb-lg-5 {
    margin-bottom: 5px !important
  }

  .mb-lg-0 {
    margin-bottom: 0 !important
  }

  .ml-lg-20 {
    margin-left: 20px !important
  }

  .ml-lg-10 {
    margin-left: 10px !important
  }

  .ml-lg-5 {
    margin-left: 5px !important
  }

  .ml-lg-0 {
    margin-left: 0 !important
  }

  .mr-lg-20 {
    margin-right: 20px !important
  }

  .mr-lg-10 {
    margin-right: 10px !important
  }

  .mr-lg-5 {
    margin-right: 5px !important
  }

  .mr-lg-0 {
    margin-right: 0 !important
  }

  .visible-lg {
    display: block !important;
  }

  .hidden-lg {
    display: none !important;
  }

  .container {
    width: 1200px;
    margin: 0 auto;
    /*padding-left: 100px;*/
    /*padding-right: 100px*/
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .visible-md {
    display: block !important;
  }

  .hidden-md {
    display: none !important;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .visible-sm {
    display: block !important;
  }

  .hidden-sm {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  .hidden-xs {
    display: none !important;
  }
}
