/*----------------------------*/
/*----------------------------*/
html,
body {
  margin: 0;
  height: 100%;
}

body {
  background-color: white;
}

h1,
h2,
h3 {
  color: black;
}

.header {
  border-bottom: solid 8px red;
}
.header .container {
  height: 80px;
}
.header .container h1 {
  text-align: center;
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .header .container h1 {
    font-size: 18px;
    margin-top: 32px;
  }
}

section#copyright {
  margin-top: auto;
  background-color: darkgray;
}
section#copyright p {
  padding: 20px 0px;
  text-align: center;
  font-size: 18px;
  color: white;
}
@media only screen and (max-width: 767px) {
  section#copyright p {
    font-size: 12px;
  }
}

.btn-red {
  text-decoration: none;
  color: white;
  background: #ff3c3c;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 22px;
  font-weight: 400;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .btn-red {
    font-size: 14px;
  }
}
.btn-red:hover, .btn-red:active {
  background-color: rgba(255, 0, 0, 0.8);
}

.btn-white {
  text-decoration: none;
  color: black;
  background: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 22px;
  font-weight: 400;
  border-color: whitesmoke;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .btn-white {
    font-size: 14px;
  }
}

.btn-gray {
  text-decoration: none;
  color: white;
  background: lightgray;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 22px;
  font-weight: 400;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .btn-gray {
    font-size: 14px;
  }
}
.btn-gray:hover, .btn-gray:active {
  background: gray;
}

.i-color-white {
  color: white;
}

.i-color-red {
  color: rgba(255, 0, 0, 0.8);
}

.i-color-gold {
  color: gold;
}

.i-color-magenta {
  color: rgba(255, 0, 255, 0.6);
}

/*----------------------------*/
/*----------------------------*/
.page-expired {
  height: 84%;
}
@media only screen and (max-width: 767px) {
  .page-expired {
    height: 74%;
  }
}
.page-expired .page-expired-back {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 168px;
}
@media only screen and (max-width: 767px) {
  .page-expired .page-expired-back {
    padding-top: 62px;
  }
}
.page-expired .page-expired-back .page-expired-back-msg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 6px gainsboro;
  border-radius: 10px;
  width: 70%;
  padding: 80px 40px;
}
@media only screen and (max-width: 767px) {
  .page-expired .page-expired-back .page-expired-back-msg {
    width: 100%;
  }
}
.page-expired .page-expired-back .page-expired-back-msg p {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .page-expired .page-expired-back .page-expired-back-msg p {
    font-size: 12px;
  }
}
.page-expired .page-expired-back .page-expired-back-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0px 40px 0px;
}
.page-expired .page-expired-back .page-expired-back-btn .btn-page-expired-back {
  margin-top: 40px;
  margin-bottom: 60px;
  padding: 16px 0px;
  width: 232px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .page-expired .page-expired-back .page-expired-back-btn .btn-page-expired-back {
    width: 232px;
    margin-top: 10px;
    margin-bottom: 0px;
  }
}

#contents_padding_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}