@import url(https://fonts.googleapis.com/css2?family=Prompt:wght@400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300&display=swap);
.text-bold {
  font-weight: bold;
}

.text-blue {
  color: #003399;
}

.text-orange {
  color: #fda601 !important;
}

.text-red {
  color: #cf0000 !important;
}

.text-green {
  color: #00CC00 !important;
}

.text-brown {
  color: #968048 !important;
}

.text-dark-brown {
  color: #43340F !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-light-blue {
  background-color: #9AB7F1 !important;
}

.bg-light-blue-2 {
  background-color: #5a7fd0 !important;
}

.bg-dark-blue {
  background-color: #021B4C !important;
}

.bg-black {
  background-color: black !important;
}

.bg-brown {
  background-color: #968048 !important;
}

.bg-grey {
  background-color: #f2f2f2 !important;
}

a.link-danger {
  color: #dc3545 !important;
  text-decoration: none;
}

p {
  margin: 0;
}

hr {
  border-bottom: 1.5px solid #968048;
  margin-top: 10px;
  margin-bottom: 10px;
}

ul.list-style-none {
  list-style: none;
}

/* This element defines the size the iframe will take.
   In this example we want to have a ratio of 25:14 */
.aspect-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* The height of the item will now be 56.25% of the width. */
}

/* Adjust the iframe so it's rendered in the outer-width and outer-height of it's parent */
.aspect-ratio iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.orange-header-highlight {
  font-weight: bold;
  font-size: 36px;
  font-family: pslxdisplaybold;
  color: #fda601;
}

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

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

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

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
body#admin-panel {
  font-family: "Kanit";
  font-size: 16px;
  font-weight: 300;
}
body#admin-panel .sidebar {
  padding-top: 0;
}
@media (min-width: 768px) {
  body#admin-panel .sidebar {
    padding-top: 48px;
  }
}
body#admin-panel .gallery-image {
  max-width: 300px;
}

.container-main > .row {
  min-height: calc(100vh - 56px);
}

main#login-page {
  min-height: 100vh;
}
main#login-page .login {
  width: 100%;
  max-width: 400px;
}

body {
  font-family: "Prompt";
  font-size: 14px;
  font-weight: 400;
  background: linear-gradient(90deg, #003399 0%, #062970 50%, #021B4D 99.48%, #021B4D 99.49%);
}
body#admin-panel {
  background: #fff;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1140px;
  }
}
hr.short-break {
  width: 62px;
  height: 4px;
  background-color: #968048;
  opacity: 1;
}

.btn-brown {
  background-color: #968048;
  color: #ffffff;
  font-family: Times;
  font-size: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.btn-brown:active, .btn-brown:focus, .btn-brown:hover {
  color: #ffffff;
}

.btn-orange {
  background-color: #fda601;
  color: #ffffff;
  padding: 10px 50px;
  font-size: 1rem;
  border-radius: 1000px;
}
.btn-orange:active, .btn-orange:focus, .btn-orange:hover {
  color: #ffffff;
  background-color: #e49501;
}

.btn-red {
  background-color: #cf0000;
  color: #ffffff;
  padding: 10px 50px;
  font-size: 1rem;
  border-radius: 1000px;
}
.btn-red:active, .btn-red:focus, .btn-red:hover {
  color: #ffffff;
  background-color: #b60000;
}

.btn-gradient-blue {
  background: linear-gradient(180deg, #003399 0%, #062970 68.23%, #021B4D 99.48%, #021B4D 99.49%);
  color: #ffffff;
  font-size: 1.2rem;
}
.btn-gradient-blue:active, .btn-gradient-blue:focus, .btn-gradient-blue:hover {
  color: #ffffff;
  background-color: #010a1b;
}

.btn-gradient-orange {
  background: linear-gradient(180deg, #FE6125 0%, #FE6125 72.92%, #AF4C00 100%);
  color: #ffffff;
  font-size: 1.2rem;
}
.btn-gradient-orange:active, .btn-gradient-orange:focus, .btn-gradient-orange:hover {
  color: #ffffff;
  background-color: #7c3600;
}

.bg-gradient-green {
  background: linear-gradient(180deg, #3ACD03 0%, #2FAB01 83.33%, #207500 100%);
}

.bg-gradient-blue {
  background: linear-gradient(180deg, #003399 0%, #062970 68.23%, #021B4D 99.48%, #021B4D 99.49%);
}

.border-top-red {
  border-top: 4px solid #cf0000;
}

.header-gradient-box {
  background: #8a0305;
  background: linear-gradient(180deg, #8a0305 0%, #ad1c23 100%);
  color: #fff;
  border-radius: 1000px;
  font-size: 22px;
}

.header-gradient-wrapper .header-gradient-line {
  height: 3px;
  background-color: #cf0000;
  flex-grow: 1;
}
.header-gradient-wrapper .header-gradient-box {
  flex-grow: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .header-gradient-wrapper .header-gradient-box {
    width: auto;
  }
}

.marquee {
  -webkit-animation: marquee 20s linear infinite;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.border-left-red {
  border-left: 7px solid #cf0000;
}

.modal.modal-search {
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}
.modal.modal-search .modal-close-wrapper {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  pointer-events: visible;
  display: inline-block;
  padding: 0 8px;
}
.modal.modal-search .modal-content {
  border-top-right-radius: 0;
  border: none;
}
.modal.modal-search .modal-content .header {
  border-top-left-radius: 5px;
  background: linear-gradient(180deg, red 0%, #e10d0d 100%);
}
.modal.modal-search .modal-content .content {
  border-color: #e10d0d;
  border-style: solid;
  border-width: 0 3px 3px 3px;
}

.country-flag {
  width: 10px;
  height: auto;
}
@media (min-width: 576px) {
  .country-flag {
    width: 30px;
  }
}

h1.emphasize {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}
@media (min-width: 576px) {
  h1.emphasize {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  h1.emphasize {
    font-size: 60px;
  }
}
@media (min-width: 1400px) {
  h1.emphasize {
    font-size: 80px;
  }
}

h2.emphasize {
  font-size: 1.75rem;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}
@media (min-width: 576px) {
  h2.emphasize {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  h2.emphasize {
    font-size: 50px;
  }
}
@media (min-width: 1400px) {
  h2.emphasize {
    font-size: 60px;
  }
}

header .navbar {
  background: #003399;
  background: linear-gradient(180deg, #003399 0%, #062970 76.67%, #021B4D 96.11%);
  font-size: 18px;
}
header .navbar a {
  color: #fff;
}
header .navbar.navbar-main-menu {
  background: #da0010;
}
header .login {
  background-color: #cf0000;
}

main#home-page section.contents .card-title {
  font-size: 1rem;
}
main#home-page section.contents .card-text {
  font-size: 0.8rem;
}
main#home-page section.contents .card-content {
  border: none;
  border-radius: 20px;
}

main#contents-news-page section.contents {
  min-height: 70vh;
}
main#contents-news-page section.contents .card-title {
  font-size: 1rem;
}
main#contents-news-page section.contents .card-text {
  font-size: 0.8rem;
}
main#contents-news-page section.contents .card-content {
  border: none;
  border-radius: 20px;
}

main#content-page section.content .content-output * {
  max-width: 100%;
}

footer {
  background-color: #003399;
}
