/**
 * @file
 * Color functions.
 *
 * @package Functions.
 */
/* Tint. */
/* Shade. */
/**
 * @file
 * Global settings.
 *
 * @package Settings.
 */
/* Import. */
/* * @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/* Font family. */
/* Font size. */
/* Font weight. */
/* Line height. */
/* Basic colors. */
/* Status colors. */
/* Border radius. */
/* Outline. */
/* Shadow. */
/* Spacing. */
/* Width. */
/* Breakpoints. */
/* Grid breakpoints. */
/* Grid. */
/**
 * @file
 * Logo styles.
 *
 * @package Molecules.
 */
/* Logo. */
.m-theme-select-list {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
  border-radius: 1.8rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  background-color: #ffffff;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  border-radius: 0.8rem;
}
@media screen and (min-width: 720px) {
  .m-theme-select-list {
    max-width: 31.2rem;
  }
}
.m-theme-select-list:hover, .m-theme-select-list:focus {
  background-color: rgba(17, 24, 39, 0.04);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  outline: none;
}
.m-theme-select-list__background {
  width: 100%;
  background-color: #004455;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}
.m-theme-select-list__image {
  width: 100%;
  height: 100%;
}
.m-theme-select-list__image img {
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.m-theme-select-list__content {
  flex: 1 0 0;
  width: 100%;
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  gap: 0.4rem;
  background-color: #ffffff;
}
.m-theme-select-list__label {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.7rem;
  color: #1e293b;
}
.m-theme-select-list__description {
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: #64748b;
  text-align: left;
  font-weight: 600;
}
.m-theme-select-list__description p {
  margin: 0;
}

/*# sourceMappingURL=theme-select-list.css.map */