@charset "UTF-8";
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /* font: inherit; */
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===== CUSTOM RESET ===== */
object {
  outline: none;
  display: block;
  overflow: hidden;
}

/* force redraw on IE8, fix outline/scroll bug on Firefox 3.6, remove unnecessary margin (copied from swffit)  */
input,
button {
  outline: none;
  font-family: "Barlow", sans-serif;
}

textarea {
  overflow: auto;
}

/* fix IE */
iframe {
  border: 0;
}

a {
  text-decoration: none;
  color: #808080;
  display: inline-block;
  cursor: pointer;
  font-family: "Barlow", sans-serif;
}

a:visited {
  color: #000000;
}

a:hover {
  color: #808080;
}

h1,
h2,
h3,
h4,
h5 {
  text-transform: uppercase;
  font-family: "Barlow", sans-serif;
  /* font-family: Noto Sans Semi; */
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=text] {
  /*background: transparent !important;*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::placeholder {
  font-family: "Barlow", sans-serif;
}

button:focus,
button:blur {
  border: none;
}

.hidden_scroll {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}

.hidden_scroll::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

div,
li,
ul,
a {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

select:focus-visible {
  outline: transparent;
}

.profile__shortcut {
  border-radius: 5px;
  align-items: center;
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 10px 20px;
  background-color: #f1f1f1;
  cursor: pointer;
  z-index: 10;
}
.profile__shortcut > div {
  display: grid;
  grid-template-columns: 1fr 30px;
  grid-gap: 20px;
}
.profile__shortcut > div .name h1 {
  font-size: medium;
  text-align: center;
  font-weight: 600;
  margin-bottom: 5px;
}
.profile__shortcut > div .name small {
  font-size: x-small;
  text-align: center;
  font-weight: 500;
}
.profile__shortcut > div .avatar {
  width: 100%;
}
.profile__shortcut > div .avatar span {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.profile__shortcut ul {
  display: none;
  position: absolute;
  top: 60px;
  right: 10px;
  background-color: #ffffff;
  box-shadow: 1px 1px 4px #dbdbdb;
  border-radius: 5px;
}
.profile__shortcut ul li {
  font-size: small;
  text-align: end;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
  padding: 10px;
}
.profile__shortcut ul li:hover {
  background-color: #f1f1f1;
}
.profile__shortcut ul.active {
  display: block;
}

.main__nav {
  box-shadow: 1px 1px 4px #dbdbdb;
  background-color: #ffffff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.main__nav div {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  padding: 20px;
  border-top-left-radius: 5px;
}
.main__nav div svg {
  width: 30px;
  height: 30px;
}
.main__nav div h1 {
  font-size: x-large;
  text-align: start;
  font-weight: bold;
  letter-spacing: 1.5px;
}
.main__nav ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
  padding: 10px;
  margin-top: 20px;
  max-height: 90vh;
  overflow: auto;
}
.main__nav ul li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  transition: all ease-in-out 0.3s;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 600;
  position: relative;
  background-color: transparent;
  z-index: 1;
}
.main__nav ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 5px;
  background-color: #fafafa;
  z-index: -1;
}
.main__nav ul li:hover::before {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  width: 100%;
  box-shadow: 1px 1px 4px #dbdbdb;
}
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.main__nav ul li.active::before {
  width: 100%;
  box-shadow: 1px 1px 4px #dbdbdb;
}
.main__nav ul li p {
  margin-left: 10px;
}

@media (max-width: 1200px) {
  .main__nav div h1 {
    font-size: medium;
  }
  .main__nav ul li {
    justify-content: center;
  }
  .main__nav ul li p {
    display: none;
  }
}
.main__container {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  padding-left: 10px;
}
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.main__container--header {
  margin-bottom: 10px;
}
.main__container--header header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  background-color: #ffffff;
  border-bottom: thin solid #f1f1f1;
  border-top-right-radius: 5px;
}
.main__container--header header div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.main__container--header header div h1 {
  font-size: x-large;
  text-align: center;
  font-weight: bold;
  padding: 15px;
}
.main__container--header header div button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: thin solid #f1f1f1;
  border-radius: 5px;
  transition: all ease-in-out 0.3s;
  box-shadow: 1px 1px 4px #dbdbdb;
  background-color: transparent;
  padding: 5px 10px;
  font-weight: 600;
}
.main__container--header header div button svg {
  margin-left: 5px;
  width: 20px;
  height: 20px;
}
.main__container--header header div button:hover {
  background-color: #000000;
  color: #ffffff;
}
.main__container--header header div button:hover svg {
  fill: #ffffff;
}
.main__container--header header div.search {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 25px;
  padding: 10px;
  box-shadow: inset 20px 20px 60px #eeeeee, inset -20px -20px 60px #ffffff;
  border-radius: 5px;
}
.main__container--header header div.search input {
  border: none;
  padding: 5px;
  margin-right: 5px;
  background-color: transparent;
}
.main__container--header header div.search input::placeholder {
  color: #aeaeae;
}
.main__container--header header div.search svg {
  fill: #aeaeae;
}
.main__container--body {
  height: 90vh;
  overflow: auto;
  padding: 10px;
}
.main__container--body table {
  width: 100%;
}
.main__container--body table thead {
  border-bottom: thin solid #f1f1f1;
}
.main__container--body table thead tr td {
  padding: 10px 15px;
}
.main__container--body table tbody tr {
  transition: all ease-in-out 0.3s;
  border-bottom: thin solid #f1f1f1;
  position: relative;
}
.main__container--body table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.main__container--body table tbody tr:hover {
  background-color: #f1f1f1;
}
.main__container--body table tbody tr td {
  padding: 10px 15px;
  vertical-align: middle;
  position: relative;
}
.main__container--body table tbody tr .setting {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  box-shadow: 1px 1px 4px #dbdbdb;
  border: thin solid transparent;
  border-radius: 4px;
  position: absolute;
  padding: 0;
  min-width: 100px;
  background-color: #ffffff;
  z-index: 2;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.main__container--body table tbody tr .setting.hidden {
  display: none;
}
.main__container--body table tbody tr .setting > ul li {
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border: thin solid transparent;
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
}
.main__container--body table tbody tr .setting > ul li svg {
  width: 15px;
  height: 15px;
}
.main__container--body table tbody tr .setting > ul li a {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.main__container--body table tbody tr .setting > ul li:hover {
  background-color: #f1f1f1;
}
.main__container--body table tbody tr .setting > ul li.cancel:hover {
  background-color: #c1272d;
  color: #ffffff;
}
.main__container--body .pagination {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
}
.main__container--body .pagination select {
  box-shadow: 1px 1px 4px #dbdbdb;
  border: none;
  margin: 0 5px;
  width: auto;
  text-align: center;
}
.main__container--body .pagination select option {
  padding: 10px;
  color: #aeaeae;
}
.main__container--body .pagination select option.active {
  color: #000000;
}

.modal__overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.4);
  display: grid;
  place-content: center;
  padding: 20px;
}
.modal__overlay ::-webkit-scrollbar {
  display: none;
  width: 0;
  background-color: transparent;
}
.modal__overlay .close__btn {
  border: thin solid #f1f1f1;
  border-radius: 50px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  background: #ffffff;
  z-index: 2;
}
.modal__overlay .close__btn svg {
  width: 15px;
  height: 15px;
}

.modal__content {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
  min-width: 200px;
  max-height: 90vh;
  overflow: auto;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 1px 1px 2px 2px #f1f1f1;
  -webkit-animation: slide-in-fwd-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-fwd-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.modal__content.fullscreen {
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
}
.modal__content.fullscreen > div {
  padding: 0;
}
.modal__content > div {
  padding: 20px;
  min-width: 40vw;
}
.modal__content > div h3 {
  font-size: medium;
  text-align: center;
  font-weight: 600;
}
.modal__content > div form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  width: 100%;
  place-content: center;
  margin-top: 10px;
}
.modal__content > div form label {
  display: block;
  width: 100%;
  padding: 0 30px;
}
.modal__content > div form label textarea {
  min-height: 70px;
}
.modal__content > div form label p {
  margin-bottom: 10px;
}
.modal__content > div form label > label {
  padding: 0;
}
.modal__content > div form label > label span {
  display: block;
  width: 100%;
  padding-top: 47.0588235294%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: thin solid #808080;
  border-radius: 0px;
  position: relative;
  background-image: url("https://i.imgur.com/eeIdnm4.jpg");
}
.modal__content > div form label > label span.thumbnail_mobile__preview {
  display: block;
  width: 100%;
  padding-top: 125%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.modal__content > div form label > label span.thumbnail_mobile__preview button {
  font-size: small;
  text-align: center;
  font-weight: 400;
  padding: 10px 15px;
}
.modal__content > div form label > label span button {
  position: absolute;
  min-width: 5%;
  left: 50%;
  bottom: 10px;
  transform: translate(-50%, 0);
  padding: 3px 5px;
  background-color: #c1272d;
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  border: thin solid transparent;
  border-radius: 0px;
  font-size: xx-small;
  text-align: center;
  font-weight: 400;
}
.modal__content > div form button {
  min-width: 250px;
  place-self: center;
}

.create__post--header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-shadow: 1px 1px 3px 3px #f1f1f1;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: #ffffff;
}
.create__post--header h1 {
  font-size: x-large;
  text-align: start;
  font-weight: bold;
}
.create__post--header div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.create__post--header div button {
  border: thin solid #aeaeae;
  border-radius: 5px;
  font-size: unset;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
  padding: 5px 10px;
  background-color: transparent;
}
.create__post--header div button.create {
  background-color: #000000;
  color: #ffffff;
}
.create__post--header div button:hover {
  background-color: #000000;
  color: #ffffff;
}
.create__post--header div button:hover svg {
  fill: #ffffff;
}
.create__post--body {
  display: grid;
  grid-template-columns: 1fr 20%;
  grid-gap: 20px;
  min-height: 100vh;
  padding-top: 75px;
}
.create__post--body.active {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.create__post--body.active .post__setting {
  display: none;
}
.create__post--body .post__editor {
  padding: 5%;
}
.create__post--body .setting__editor {
  border: thin solid #f1f1f1;
  background-color: #ffffff;
}
.create__post--body .setting__editor .post__setting {
  -webkit-animation: fade-in-right 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  position: sticky;
  top: 50px;
  max-height: 85vh;
  overflow: auto;
}
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.create__post--body .setting__editor .post__setting > div {
  padding: 20px;
}
.create__post--body .setting__editor .post__setting > div h5 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.create__post--body .setting__editor .post__setting > div h5 svg {
  width: 15px;
  height: 15px;
}
.create__post--body .setting__editor .post__setting > div label {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.create__post--body .setting__editor .post__setting > div label input[type=checkbox] {
  width: auto;
  margin-right: 5px;
}
.create__post--body .setting__editor label {
  display: block;
  width: 100%;
  background-color: #f1f1f1;
}
.create__post--body .setting__editor label span {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: thin solid #808080;
  border-radius: 0px;
  position: relative;
  background-image: url("https://i.imgur.com/eeIdnm4.jpg");
}

.create__page--header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-shadow: 1px 1px 3px 3px #f1f1f1;
}
.create__page--header h1 {
  font-size: x-large;
  text-align: start;
  font-weight: bold;
}
.create__page--header div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.create__page--header div button {
  border: thin solid #aeaeae;
  border-radius: 5px;
  font-size: unset;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
  padding: 5px 10px;
  background-color: transparent;
}
.create__page--header div button.create {
  background-color: #000000;
  color: #ffffff;
}
.create__page--header div button:hover {
  background-color: #000000;
  color: #ffffff;
}
.create__page--header div button:hover svg {
  fill: #ffffff;
}
.create__page--body {
  min-height: 100vh;
  position: relative;
}
.create__page--body .page__title {
  padding: 40px 70px;
}
.create__page--body .page__title input {
  padding: 10px;
}
.create__page--body .page__content {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  grid-gap: 20px;
  padding: 50px;
}
.create__page--body .page__content > div {
  padding: 20px;
}
.create__page--body .page__content > div textarea {
  border: thin solid #aeaeae;
  border-radius: 4px;
  margin-bottom: 20px;
  height: 300px;
}
.create__page--body .preview__wrapper {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  z-index: 3;
  padding: 5%;
  display: none;
  width: 100%;
  height: 100%;
}
.create__page--body .preview__wrapper.active {
  display: block;
}
.create__page--body .preview__wrapper .preview__block {
  border: thin solid #aeaeae;
  border-radius: 4px;
  background-color: #ffffff;
  height: 100%;
  overflow: auto;
}

.delete__post {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.delete__post h3 {
  font-size: medium;
  text-align: center;
  font-weight: 600;
}
.delete__post div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 10px;
}

.create__campaign {
  position: relative;
}
.create__campaign .campaign__header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 1px 1px 4px #dbdbdb;
  position: fixed;
  background-color: #ffffff;
  padding: 20px;
  top: 0;
  z-index: 1;
  width: 100%;
}
.create__campaign .campaign__header h1 {
  margin-left: 20px;
}
.create__campaign .campaign__header button {
  border: none;
}
.create__campaign .campaign__body {
  padding: 2% 5%;
  margin-top: 80px;
  background-color: #f1f1f1;
}
.create__campaign .campaign__body > h1 {
  margin-bottom: 15px;
}
.create__campaign .campaign__body > h1 input {
  padding: 10px;
  border: thin solid #aeaeae;
  border-radius: 4px;
}
.create__campaign .campaign__body > ul {
  padding: 20px;
  background-color: #ffffff;
}
.create__campaign .campaign__body > ul > li {
  display: grid;
  grid-template-columns: 250px 1fr 300px;
  grid-gap: 20px;
  align-items: center;
  margin: 25px 0;
}
.create__campaign .campaign__body > ul > li.banner__form {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.create__campaign .campaign__body > ul > li.banner__form label {
  padding: 10px;
}
.create__campaign .campaign__body > ul > li.banner__form label h3 {
  margin-bottom: 10px;
}
.create__campaign .campaign__body > ul > li.banner__form label span {
  position: relative;
  border: thin solid #aeaeae;
  border-radius: 4px;
  background-image: url(https://i.imgur.com/eeIdnm4.jpg);
}
.create__campaign .campaign__body > ul > li.banner__form label.banner__form--desktop {
  width: 70%;
}
.create__campaign .campaign__body > ul > li.banner__form label.banner__form--desktop span {
  display: block;
  width: 100%;
  padding-top: 38.8888888889%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
}
.create__campaign .campaign__body > ul > li.banner__form label.banner__form--mobile {
  width: 30%;
}
.create__campaign .campaign__body > ul > li.banner__form label.banner__form--mobile span {
  display: block;
  width: 100%;
  padding-top: 125%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.create__campaign .campaign__body > ul > li.optional__form > ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.create__campaign .campaign__body > ul > li.optional__form > ul > li {
  display: grid;
  grid-template-columns: 1fr 20px;
  grid-gap: 10px;
  align-items: center;
}
.create__campaign .campaign__body > ul > li.modal__form > ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  background-color: #f1f1f1;
  padding: 10px;
  max-width: 100%;
  overflow: auto;
}
.create__campaign .campaign__body > ul > li.modal__form > ul > li {
  min-width: 150px;
}
.create__campaign .campaign__body > ul > li.modal__form > ul > li > label span {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: thin solid #aeaeae;
  border-radius: 4px;
  position: relative;
  background-image: url(https://i.imgur.com/eeIdnm4.jpg);
}
.create__campaign .campaign__body div {
  padding: 20px;
  margin-top: 15px;
  background-color: #ffffff;
}
.create__campaign .campaign__body div h3 {
  margin-bottom: 15px;
}
.create__campaign .campaign__body div > div label {
  position: relative;
}
.create__campaign .campaign__body div > div label input {
  padding: 10px;
  border: thin solid #aeaeae;
  border-radius: 4px;
}
.create__campaign .campaign__body div > div label span {
  border: thin solid #aeaeae;
  border-radius: 0px;
  position: absolute;
  left: 0;
  max-height: 100px;
  overflow: auto;
  display: none;
  width: 100%;
  background-color: #ffffff;
}
.create__campaign .campaign__body div > div label span p {
  padding: 10px;
}
.create__campaign .campaign__body div > div label span p:hover {
  background-color: #f1f1f1;
}
.create__campaign .campaign__body div.products__form {
  display: grid;
  grid-template-columns: 1fr 30%;
  grid-gap: 10px;
}
.create__campaign .campaign__body div.products__form .category__pick .category__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
.create__campaign .campaign__body div.products__form .category__pick .category__list ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5px;
}
.create__campaign .campaign__body div.products__form .category__pick .category__list ul li label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.create__campaign .campaign__body div.products__form .category__pick .category__list ul li label input[type=checkbox] {
  width: auto;
  margin: 0;
}
.create__campaign .campaign__body div.products__form .category__pick .category__list ul li:hover {
  background-color: #fafafa;
}
.create__campaign .campaign__body div.products__form .price__pick > div label {
  display: block;
  margin: 20px 0;
}
.create__campaign .campaign__body div.products__form .price__pick > div label p {
  margin-bottom: 5px;
}
.create__campaign .campaign__body div.promotion__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.create__campaign .campaign__body div.promotion__form .discount__mode div select,
.create__campaign .campaign__body div.promotion__form .discount__mode div input {
  width: 50%;
  margin: 10px 0;
  padding: 10px;
}
.create__campaign .campaign__body div.promotion__form .gift__item {
  position: relative;
}
.create__campaign .campaign__body div.promotion__form .gift__item ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  background-color: #ffffff;
  margin-top: 10px;
}
.create__campaign .campaign__body div.promotion__form .gift__item ul li {
  background-color: #f1f1f1;
  padding: 10px;
}
.create__campaign .campaign__body div.promotion__form .gift__item ul li button {
  background-color: #f1f1f1;
  padding: 5px;
}
.create__campaign .campaign__body div ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  margin-top: 20px;
  background-color: #f1f1f1;
  padding: 15px;
  max-height: 500px;
  overflow: auto;
}
.create__campaign .campaign__body div ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 5px;
}
.create__campaign .campaign__body div ul li button {
  border: none;
}
.create__campaign .campaign__body div ul li button svg {
  width: 10px;
  height: 10px;
}
.create__campaign .campaign__body div.create__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.create__campaign .campaign__body div.create__btn button {
  padding: 15px;
  margin: 0 15px;
  width: 40%;
  font-size: large;
  text-align: center;
  font-weight: 600;
}
.create__campaign .campaign__body div.create__btn button:hover {
  background-color: #000000;
  color: #ffffff;
}
.create__campaign .busy__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  display: grid;
  place-content: start center;
}
.create__campaign .busy__overlay div {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.create__campaign .busy__overlay div h1 {
  font-size: xx-large;
  text-align: center;
  font-weight: 700;
  margin: 20px;
}
.create__campaign .busy__overlay div button {
  font-size: x-large;
  text-align: center;
  font-weight: 700;
  padding: 15px;
  width: 100%;
  margin: 15px 0;
}

.media__modal {
  display: flex;
  flex-direction: column;
  width: 60vw !important;
  gap: 20px;
}
.media__modal .save-images-button {
  padding: 5px 10px;
  width: fit-content;
  background-color: #333;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  margin-left: auto;
}
.media__modal .save-images-button:hover {
  background-color: #000;
}
.media__modal .images-container {
  display: flex;
  gap: 10px;
}
.media__modal .images-container .image-input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  border: 1px solid #c3bcbc;
  border-radius: 5px;
  aspect-ratio: 9/6;
}
.media__modal .images-container .images-preview-container {
  overflow: scroll;
  flex: 1;
}
.media__modal .images-container .images-preview-container .images-preview {
  display: flex;
  gap: 10px;
}
.media__modal .images-container .images-preview-container .images-preview .image-preview {
  display: block;
  width: 160px;
  border: 1px solid #c3bcbc;
  border-radius: 5px;
  aspect-ratio: 9/6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.media__modal .images-container .images-preview-container .images-preview .image-preview .remove-image {
  border-radius: 50%;
  border: 1px solid #000;
  width: 20px;
  height: 20px;
}
.media__modal .images-container .images-preview-container .images-preview .image-preview .remove-image svg {
  width: 100%;
  height: 100%;
}

.create__snap h1 {
  margin-bottom: 20px;
}
.create__snap .snap__form > label {
  margin: 10px 0;
  position: relative;
  display: block;
}
.create__snap .snap__form > label input {
  padding: 10px;
  border: thin solid #aeaeae;
  border-radius: 4px;
}
.create__snap .snap__form > label .product__label {
  border: thin solid #aeaeae;
  border-radius: 0px;
  position: absolute;
  left: 0;
  max-height: 100px;
  overflow: auto;
  display: none;
  width: 100%;
  background-color: #ffffff;
}
.create__snap .snap__form > label .product__label p {
  padding: 10px;
}
.create__snap .snap__form > label .product__label p:hover {
  background-color: #f1f1f1;
}
.create__snap .snap__form > label p {
  margin-bottom: 10px;
}
.create__snap .snap__form > label .thumbnail__preview {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: thin solid #f1f1f1;
  border-radius: 0px;
  background-image: url("https://i.imgur.com/eeIdnm4.jpg");
}
.create__snap .snap__form .product__view {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  background-color: #ffffff;
  width: 100%;
}
.create__snap .snap__form .product__view li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: thin solid #f1f1f1;
  border-radius: 2px;
  background-color: #ffffff;
  padding: 5px;
}
.create__snap .snap__form .product__view li button {
  border: none;
  padding: 5px;
}
.create__snap .snap__form .product__view li button svg {
  width: 10px;
  height: 10px;
}
.create__snap .snap__form > button {
  margin-top: 20px;
}

.edit__snap h3 {
  margin-bottom: 20px;
}
.edit__snap .snap__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.edit__snap .snap__form > label {
  margin: 10px 0;
  position: relative;
  display: block;
}
.edit__snap .snap__form > label input {
  padding: 10px;
  border: thin solid #aeaeae;
  border-radius: 4px;
}
.edit__snap .snap__form > label .product__label {
  border: thin solid #aeaeae;
  border-radius: 0px;
  position: absolute;
  left: 0;
  max-height: 100px;
  overflow: auto;
  display: none;
  width: 100%;
  background-color: #ffffff;
}
.edit__snap .snap__form > label .product__label p {
  padding: 10px;
}
.edit__snap .snap__form > label .product__label p:hover {
  background-color: #f1f1f1;
}
.edit__snap .snap__form > label p {
  margin-bottom: 10px;
}
.edit__snap .snap__form > label .thumbnail__preview {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: thin solid #f1f1f1;
  border-radius: 0px;
  background-image: url("https://i.imgur.com/eeIdnm4.jpg");
}
.edit__snap .snap__form > label .product__view {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  background-color: #ffffff;
  width: 100%;
  margin: 10px 0;
}
.edit__snap .snap__form > label .product__view li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: thin solid #f1f1f1;
  border-radius: 2px;
  background-color: #ffffff;
  padding: 5px;
}
.edit__snap .snap__form > label .product__view li button {
  border: none;
  padding: 5px;
}
.edit__snap .snap__form > label .product__view li button svg {
  width: 10px;
  height: 10px;
}
.edit__snap .snap__form > button {
  width: 100%;
}

.notify-wrapper {
  width: 100%;
  height: 0px;
  left: 0;
  top: 0;
  text-align: right;
  position: fixed;
  z-index: 11111;
}

.notify-wrapper > span {
  border-radius: 6px;
  margin: 9px;
  padding: 20px 40px;
  font-size: 13px;
  display: inline-block;
}

.notify-wrapper .server-success {
  background: #444;
  border: 0;
  color: #eee;
}

.notify-wrapper .server-warning {
  background-color: #fff3d1;
  border: 1px solid #d6aa25;
  color: #b77a1f;
}

.notify-wrapper .server-fail {
  background-color: #fdede8;
  border: 1px solid #c74820;
  color: #de4a1b;
}

.product__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.product {
  width: 100%;
  position: relative;
  margin: 10px 0;
}
.product.fade__in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.product .thumbnail {
  position: relative;
}
.product .thumbnail a {
  width: 100%;
}
.product .thumbnail a span {
  display: block;
  width: 100%;
  padding-top: 125%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(241, 241, 241, 0.6);
}
.product .thumbnail a span:hover {
  background-blend-mode: multiply;
}
.product .thumbnail button {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background-color: #ffffff;
  border: transparent;
  padding: 3px 5px;
  margin: 5px;
  z-index: 1;
  font-size: small;
}
.product .thumbnail button:hover + ul {
  display: block;
  -webkit-animation: swing-in-bottom-fwd 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation: swing-in-bottom-fwd 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@-webkit-keyframes swing-in-bottom-fwd {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    opacity: 1;
  }
}
@keyframes swing-in-bottom-fwd {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    opacity: 1;
  }
}
.product .thumbnail ul {
  width: 80%;
  display: none;
  position: absolute;
  border-radius: 4px;
  bottom: 50px;
  left: 15px;
  padding: 20px;
  background-color: #ffffff;
}
.product .thumbnail ul li {
  text-align: center;
  background-color: #ffffff;
  border: thin solid #000000;
  letter-spacing: 1.2px;
  margin: 5px 0;
  padding: 10px;
}
.product .name {
  font-size: medium;
  text-align: center;
  font-weight: 600;
  word-break: break-word;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 10px 0;
  cursor: pointer;
}
.product .price {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10%, auto));
  grid-template-rows: 1fr;
  place-items: center;
}
.product .price .discount {
  color: #aeaeae;
  text-decoration: line-through;
}
.product .tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  background-color: #c1272d;
  color: #ffffff;
  border-radius: 0 0 0 4px;
  text-align: center;
}
.product .color {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, 20px));
  grid-gap: 10px;
  place-content: center;
  margin-top: 10px;
  min-height: 25px;
}
.product .color:hover > p {
  display: none;
}
.product .color:hover > span {
  display: block;
}
.product .color p {
  grid-column: none;
  color: #aeaeae;
  display: block;
}
.product .color span {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px 1px #f1f1f1;
  border: thin solid #aeaeae;
  box-sizing: content-box;
  display: none;
}

/* main menu */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /* font: inherit; */
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.4;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===== CUSTOM RESET ===== */
object {
  outline: none;
  display: block;
  overflow: hidden;
}

/* force redraw on IE8, fix outline/scroll bug on Firefox 3.6, remove unnecessary margin (copied from swffit)  */
input,
button {
  outline: none;
  font-family: "Barlow", sans-serif;
}

textarea {
  overflow: auto;
  font-family: "Barlow", sans-serif;
}

/* fix IE */
iframe {
  border: 0;
}

a {
  text-decoration: none;
  color: #808080;
  display: inline-block;
  cursor: pointer;
}

a:visited {
  color: #000000;
}

a:hover {
  color: #808080;
}

h1,
h2,
h3,
h4,
h5 {
  text-transform: uppercase;
  /* font-family: Noto Sans Semi; */
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #aeaeae;
  background-color: #ffffff;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=text] {
  /*background: transparent !important;*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::placeholder {
  font-family: ATSurtVN;
}

button {
  color: #000000;
}

button:focus,
button:blur {
  border: none;
}

.hidden_scroll {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}

.hidden_scroll::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

div,
li,
ul,
a {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 25px;
  height: 25px;
}

input,
select {
  border: thin solid #808080;
  border-radius: 4px;
  padding: 5px;
  width: 100%;
}

textarea {
  width: 100%;
  min-height: 150px;
  border: thin solid #808080;
  padding: 5px;
  outline: none;
  resize: vertical;
}

@media (max-width: 769px) {
  svg {
    width: 20px;
    height: 20px;
  }
}
.busy__loader {
  width: 100%;
  display: grid;
  place-content: center;
  padding: 20px;
  z-index: 20;
}
.busy__loader svg {
  width: 50%;
  height: auto;
}

.preview__loader {
  min-height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(225, 225, 225, 0.5);
  display: grid;
  place-content: center;
  padding: 20px;
  z-index: 99999999;
}
.preview__loader svg {
  width: 200px;
  height: auto;
}

.img__loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  place-content: center;
  background-color: rgba(225, 225, 225, 0.5);
}
.img__loader .lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.img__loader .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.img__loader .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.img__loader .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.img__loader .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
  font-weight: normal;
}

.login {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0;
  position: relative;
}
.login__background {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(https://i.imgur.com/Zpr3EOX.jpg);
}
.login__background svg {
  width: 80%;
  height: 80%;
  stroke: none;
}
.login__form {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border: thin solid #aeaeae;
  border-radius: 10px;
  box-shadow: 1px 1px 4px #dbdbdb;
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  backdrop-filter: blur(10px);
  padding: 20px;
}
.login__form .logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.login__form .logo svg {
  width: 70px;
  height: 70px;
}
.login__form form label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border: thin solid #aeaeae;
  border-radius: 10px;
  box-shadow: 1px 1px 4px #dbdbdb;
  padding: 10px 15px;
  position: relative;
  margin: 15px 0;
}
.login__form form label svg {
  position: absolute;
  left: 5px;
  width: 15px;
  height: 15px;
  color: #aeaeae;
}
.login__form form label input {
  border: none;
  background: transparent;
  margin-left: 15px;
}
.login__form form div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.login__form form div button {
  border: thin solid #aeaeae;
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
  box-shadow: 1px 1px 4px #dbdbdb;
  padding: 15px 25px;
  background: transparent;
  width: 100%;
}
.login__form form div button:hover {
  background-color: #aeaeae;
}

.dashboard__header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 22px;
  background-color: #ffffff;
  box-shadow: 0px 1px 1px 1px #f1f1f1;
}
.dashboard__header .search {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 25px;
  padding: 10px;
  box-shadow: inset 20px 20px 60px #eeeeee, inset -20px -20px 60px #ffffff;
  border-radius: 5px;
}
.dashboard__header .search input {
  border: none;
  padding: 5px;
  margin-right: 5px;
  background-color: transparent;
}
.dashboard__header .search input::placeholder {
  color: #aeaeae;
}
.dashboard__header .search svg {
  fill: #aeaeae;
}
.dashboard__header .avatar {
  width: 40px;
}
.dashboard__header .avatar span {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.post {
  width: 100%;
}

.pages {
  width: 100%;
}

.categories__body {
  padding: 20px;
  display: grid;
  grid-template-columns: 35% 1fr;
  grid-gap: 20px;
}
.categories__body form {
  width: 100%;
}
.categories__body form label {
  display: block;
  width: 100%;
  margin-bottom: 40px;
}
.categories__body form label textarea {
  min-height: 70px;
}
.categories__body form label span {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: thin solid #808080;
  border-radius: 0px;
  position: relative;
  background-image: url("https://i.imgur.com/eeIdnm4.jpg");
}
.categories__body form label p {
  margin-bottom: 5px;
}
.categories__body form button {
  width: 30%;
  border: thin solid #f1f1f1;
  border-radius: 4px;
  box-shadow: 1px 1px 4px #dbdbdb;
}
.categories__body table {
  box-shadow: 1px 1px 4px #dbdbdb;
}
.categories__body table tr th {
  vertical-align: middle;
}
.categories__body table tr td {
  text-align: center;
}
.categories__body table tr .table__thumbnail {
  min-width: 130px;
}
.categories__body table tr .table__thumbnail .thumbnail {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner__body > div {
  display: grid;
  grid-template-columns: 1fr 30% 20%;
  grid-gap: 20px;
}
.banner__body > div .banner__main {
  padding: 20px;
}
.banner__body > div .banner__main h3 {
  margin: 10px 0 20px 0;
}
.banner__body > div .banner__main ul {
  margin: 15px 0;
  background-color: #f1f1f1;
  padding: 15px;
}
.banner__body > div .banner__main ul li {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  grid-gap: 20px;
  background-color: #ffffff;
  align-items: start;
  padding: 10px 20px;
  margin-bottom: 10px;
  position: relative;
}
.banner__body > div .banner__main ul li .banner__item--preview {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__body > div .banner__main ul li .mobile__item--preview {
  display: block;
  width: 100%;
  padding-top: 125%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__body > div .banner__main ul li .banner__item--name {
  font-size: large;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
}
.banner__body > div .banner__main ul li .setting {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  box-shadow: 1px 1px 4px #dbdbdb;
  border: thin solid transparent;
  border-radius: 4px;
  position: absolute;
  padding: 0;
  min-width: 100px;
  background-color: #ffffff;
  z-index: 2;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.banner__body > div .banner__main ul li .setting.hidden {
  display: none;
}
.banner__body > div .banner__main ul li .setting li {
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border: thin solid transparent;
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
  background-color: #ffffff;
}
.banner__body > div .banner__main ul li .setting li svg {
  width: 15px;
  height: 15px;
}
.banner__body > div .banner__main ul li .setting li a {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.banner__body > div .banner__main ul li .setting li:hover {
  background-color: #f1f1f1;
}
.banner__body > div .banner__main ul li .setting li.cancel:hover {
  background-color: #c1272d;
  color: #ffffff;
}
.banner__body > div .banner__minor {
  padding: 20px;
}
.banner__body > div .banner__minor h3 {
  margin: 10px 0 20px 0;
}
.banner__body > div .banner__minor ul {
  margin: 15px 0;
  background-color: #f1f1f1;
  padding: 15px;
}
.banner__body > div .banner__minor ul li {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  background-color: #ffffff;
  align-items: start;
  padding: 10px 20px;
  margin-bottom: 10px;
  position: relative;
}
.banner__body > div .banner__minor ul li .banner__item--preview {
  display: block;
  width: 100%;
  padding-top: 27.7777777778%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__body > div .banner__minor ul li .mobile__item--preview {
  display: block;
  width: 100%;
  padding-top: 125%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__body > div .banner__minor ul li .banner__item--name {
  font-size: large;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
}
.banner__body > div .banner__minor ul li .setting {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  box-shadow: 1px 1px 4px #dbdbdb;
  border: thin solid transparent;
  border-radius: 4px;
  position: absolute;
  padding: 0;
  min-width: 100px;
  background-color: #ffffff;
  z-index: 2;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.banner__body > div .banner__minor ul li .setting.hidden {
  display: none;
}
.banner__body > div .banner__minor ul li .setting li {
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border: thin solid transparent;
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
  background-color: #ffffff;
}
.banner__body > div .banner__minor ul li .setting li svg {
  width: 15px;
  height: 15px;
}
.banner__body > div .banner__minor ul li .setting li a {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.banner__body > div .banner__minor ul li .setting li:hover {
  background-color: #f1f1f1;
}
.banner__body > div .banner__minor ul li .setting li.cancel:hover {
  background-color: #c1272d;
  color: #ffffff;
}

.menu__body {
  padding: 20px;
}
.menu__body button {
  margin-bottom: 15px;
}
.menu__body > div {
  display: flex;
  gap: 10px;
  width: 100%;
}
.menu__body > div div {
  width: 50%;
}
.menu__body > div div ul {
  box-shadow: 1px 1px 4px #dbdbdb;
  border: thin solid transparent;
  border-radius: 4px;
  margin-top: 20px;
  padding: 20px;
  width: 100%;
  background-color: #f1f1f1;
}
.menu__body > div div ul li {
  margin-bottom: 15px;
}
.menu__body > div div ul li > button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}
.menu__body > div div ul li > button p {
  text-transform: uppercase;
  font-size: medium;
  text-align: center;
  font-weight: 600;
}
.menu__body > div div ul li form {
  visibility: hidden;
  height: 0;
  background-color: #ffffff;
  padding: 0px;
}
.menu__body > div div ul li form input {
  margin: 10px 0;
  padding: 10px;
}
.menu__body > div div ul li form.active {
  visibility: visible;
  height: auto;
  padding: 10px;
}
.menu__body > div div ul li form > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.menu__body h3 {
  margin: 20px 0;
}
.menu__body .menu__preview {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 1px 4px #dbdbdb;
  margin-top: 10px;
  padding: 10px;
}
.menu__body .menu__preview > div {
  font-size: medium;
  text-align: center;
  padding: 15px 20px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin: 0 15px;
  position: relative;
}

.media__body > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  padding: 30px;
}
.media__body > ul > li {
  border: thin solid #f1f1f1;
  border-radius: 4px;
  width: 100%;
  padding: 5px;
  position: relative;
}
.media__body > ul > li span {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
}
.media__body > ul > li:hover {
  border: thin solid #aeaeae;
  border-radius: 4px;
}
.media__body > ul > li .setting {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  box-shadow: 1px 1px 4px #dbdbdb;
  border: thin solid transparent;
  border-radius: 4px;
  position: absolute;
  padding: 0;
  min-width: 100px;
  background-color: #ffffff;
  z-index: 2;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.media__body > ul > li .setting.hidden {
  display: none;
}
.media__body > ul > li .setting > ul li {
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border: thin solid transparent;
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
}
.media__body > ul > li .setting > ul li svg {
  width: 15px;
  height: 15px;
}
.media__body > ul > li .setting > ul li a {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.media__body > ul > li .setting > ul li:hover {
  background-color: #f1f1f1;
}
.media__body > ul > li .setting > ul li.cancel:hover {
  background-color: #c1272d;
  color: #ffffff;
}

.blog__categories .blog__body {
  padding: 20px;
  display: grid;
  grid-template-columns: 35% 1fr;
  grid-gap: 20px;
}
.blog__categories .blog__body form {
  width: 100%;
}
.blog__categories .blog__body form label {
  display: block;
  width: 100%;
  margin-bottom: 40px;
}
.blog__categories .blog__body form label textarea {
  min-height: 70px;
}
.blog__categories .blog__body form label span {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: thin solid #808080;
  border-radius: 0px;
  position: relative;
  background-image: url("https://i.imgur.com/eeIdnm4.jpg");
}
.blog__categories .blog__body form label p {
  margin-bottom: 5px;
}
.blog__categories .blog__body form button {
  width: 30%;
  border: thin solid #f1f1f1;
  border-radius: 4px;
  box-shadow: 1px 1px 4px #dbdbdb;
}
.blog__categories .blog__body table {
  box-shadow: 1px 1px 4px #dbdbdb;
}
.blog__categories .blog__body table tr th {
  vertical-align: middle;
}
.blog__categories .blog__body table tr .table__thumbnail {
  min-width: 130px;
}
.blog__categories .blog__body table tr .table__thumbnail .thumbnail {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.homepage__body {
  padding: 20px;
}
.homepage__body > div {
  margin: 20px 0;
  padding: 20px;
  background-color: #fafafa;
}
.homepage__body > div label {
  position: relative;
}
.homepage__body > div label input {
  padding: 10px;
  border: thin solid #aeaeae;
  border-radius: 4px;
}
.homepage__body > div label span {
  border: thin solid #aeaeae;
  border-radius: 0px;
  position: absolute;
  left: 0;
  max-height: 100px;
  overflow: auto;
  display: none;
  width: 100%;
  background-color: #ffffff;
}
.homepage__body > div label span p {
  padding: 10px;
}
.homepage__body > div label span p:hover {
  background-color: #f1f1f1;
}
.homepage__body > div h3 {
  font-size: large;
  text-align: start;
  font-weight: 600;
  margin-bottom: 20px;
}
.homepage__body > div .products__view {
  margin: 20px 0;
}
.homepage__body > div .products__view div {
  box-shadow: 1px 1px 4px #dbdbdb;
  border: thin solid transparent;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 10px;
  width: 100%;
}
.homepage__body > div .products__view div h4 {
  border-bottom: 2px solid #aeaeae;
  padding: 10px 0;
}
.homepage__body > div .products__view div ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin: 20px 0;
}
.homepage__body > div .products__view div ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: thin solid #f1f1f1;
  border-radius: 2px;
  background-color: #ffffff;
  padding: 5px;
}
.homepage__body > div .products__view div ul li button {
  border: none;
  padding: 5px;
}
.homepage__body > div .products__view div ul li button svg {
  width: 10px;
  height: 10px;
}

.snap__body .snap__list {
  background-color: #f1f1f1;
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.snap__body .snap__list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-gap: 20px;
  background-color: #ffffff;
  align-items: center;
  position: relative;
}
.snap__body .snap__list li .snap__item--img {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.snap__body .snap__list li .snap__item--product li {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-gap: 10px;
  margin: 5px 0;
}
.snap__body .snap__list li .snap__item--product li span {
  display: block;
  width: 100%;
  padding-top: 125%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.snap__body .snap__list li .snap__item--product li p {
  font-size: small;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
}
.snap__body .snap__list li .setting {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  box-shadow: 1px 1px 4px #dbdbdb;
  border: thin solid transparent;
  border-radius: 4px;
  position: absolute;
  padding: 0;
  min-width: 100px;
  background-color: #ffffff;
  z-index: 2;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.snap__body .snap__list li .setting.hidden {
  display: none;
}
.snap__body .snap__list li .setting li {
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border: thin solid transparent;
  border-radius: 4px;
  transition: all ease-in-out 0.3s;
  background-color: #ffffff;
}
.snap__body .snap__list li .setting li svg {
  width: 15px;
  height: 15px;
}
.snap__body .snap__list li .setting li a {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.snap__body .snap__list li .setting li:hover {
  background-color: #f1f1f1;
}
.snap__body .snap__list li .setting li.cancel:hover {
  background-color: #c1272d;
  color: #ffffff;
}

.color__picker {
  width: 100%;
  border: transparent;
}

.editor-quote {
  font-style: italic;
  letter-spacing: 1.1px;
  color: #aeaeae;
}
.editor-quote::before {
  content: "“";
  margin-right: 5px;
}
.editor-quote::after {
  content: "”";
  margin-left: 5px;
}

.cdx-marker {
  background: rgba(26, 137, 23, 0.2);
  padding: 2px 0;
}

.cdx-color {
  color: #c1272d;
}

.cdx-size {
  font-size: medium;
}

.font__picker {
  width: 100%;
  border: thin solid #f1f1f1;
  padding: 5px;
}

.cdx-textAlign {
  display: block;
}

.text__format li {
  margin: 5px;
  padding: 10px;
  border: thin solid transparent;
}
.text__format li svg {
  margin-right: 10px;
}
.text__format li:hover {
  border: thin solid #f1f1f1;
}

.inline-code {
  background: rgba(250, 239, 240, 0.78);
  color: #b44437;
  padding: 3px 4px;
  border-radius: 5px;
  margin: 0 1px;
  font-family: inherit;
  font-size: 0.86em;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.codex-editor__redactor {
  margin-bottom: 100px;
  padding-bottom: 50px !important;
}

.ce-block__content {
  max-width: 65vw;
}
.ce-block__content .ce-header {
  text-align: start;
  font-weight: 700;
  font-size: larger;
}

.ce-toolbar__actions {
  left: 0;
  justify-content: space-between;
}

.ce-toolbar__content {
  max-width: 80vw;
}

.ce-paragraph {
  padding: 10px;
}
.ce-paragraph--left {
  text-align: left;
}
.ce-paragraph--center {
  text-align: center;
}
.ce-paragraph--right {
  text-align: right;
}
.ce-paragraph--justify {
  text-align: justify;
}

.ce-button {
  padding: 10px 15px;
  font-size: medium;
  display: flex;
  outline: none;
}
.ce-button--left {
  justify-content: flex-start;
}
.ce-button--center {
  justify-content: center;
}
.ce-button--right {
  justify-content: end;
}

.ce-header {
  padding: 1em 10px;
  margin: 0;
  margin-bottom: -0.9em;
  line-height: 1.5em;
  outline: none;
}

.ce-header p,
.ce-header div {
  padding: 0 !important;
  margin: 0 !important;
}

.ce-header[contentEditable=true][data-placeholder]::before {
  position: absolute;
  content: attr(data-placeholder);
  color: #707684;
  font-weight: normal;
  display: none;
  cursor: text;
}

.ce-header[contentEditable=true][data-placeholder]:empty::before {
  display: block;
}

.ce-header[contentEditable=true][data-placeholder]:empty:focus::before {
  display: none;
}

.codex-editor svg {
  width: 20px;
  height: 15px;
}

.cdx-simple-image__caption {
  display: none;
}

.cdx-simple-image .cdx-loader {
  min-height: 200px;
}

.cdx-simple-image .cdx-input {
  margin-top: 10px;
}

.cdx-simple-image img {
  max-width: 100%;
  vertical-align: bottom;
}

.cdx-simple-image__caption[contentEditable=true][data-placeholder]:empty::before {
  position: absolute;
  content: attr(data-placeholder);
  color: #707684;
  font-weight: normal;
  opacity: 0;
}

.cdx-simple-image__caption[contentEditable=true][data-placeholder]:empty::before {
  opacity: 1;
}

.cdx-simple-image__caption[contentEditable=true][data-placeholder]:empty:focus::before {
  opacity: 0;
}

.cdx-simple-image__picture--with-background {
  background: #ffffff;
  padding: 10px;
}

.cdx-simple-image__picture--with-background img {
  display: block;
  max-width: 60%;
  margin: 0 auto;
}

.cdx-simple-image__picture--with-border {
  border: 1px solid #e8e8eb;
  padding: 1px;
}

.cdx-simple-image__picture--stretched img {
  max-width: none;
  width: 100%;
}

.cdx-quote-icon svg {
  transform: rotate(180deg);
}

.cdx-quote {
  margin: 0;
}

.cdx-quote__text {
  min-height: 158px;
  margin-bottom: 10px;
}

.cdx-quote [contentEditable=true][data-placeholder]::before {
  position: absolute;
  content: attr(data-placeholder);
  color: #707684;
  font-weight: normal;
  opacity: 0;
}

.cdx-quote [contentEditable=true][data-placeholder]:empty::before {
  opacity: 1;
}

.cdx-quote [contentEditable=true][data-placeholder]:empty:focus::before {
  opacity: 0;
}

.cdx-quote-settings {
  display: flex;
}

.cdx-quote-settings .cdx-settings-button {
  width: 50%;
}

.cdx-list {
  margin: 0;
  padding-left: 40px;
  outline: none;
}
.cdx-list__item {
  padding: 5.5px 0 5.5px 3px;
  line-height: 1.6em;
}
.cdx-list--unordered {
  list-style: disc;
}
.cdx-list--ordered {
  list-style: decimal;
}
.cdx-list-settings {
  display: flex;
}
.cdx-list-settings .cdx-settings-button {
  width: 50%;
}

.embed-tool {
  display: grid;
  grid-template-columns: 1fr;
}
.embed-tool--loading__caption {
  display: none;
}
.embed-tool--loading__preloader {
  display: block;
}
.embed-tool--loading__content {
  display: none;
}
.embed-tool__preloader {
  display: none;
  position: relative;
  height: 200px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #e6e9eb;
}
.embed-tool__preloader::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -25px;
  margin-left: -15px;
  border-radius: 50%;
  border: 2px solid #cdd1e0;
  border-top-color: #388ae5;
  box-sizing: border-box;
  animation: embed-preloader-spin 2s infinite linear;
}
.embed-tool__url {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 250px;
  color: #7b7e89;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.embed-tool__content {
  width: 60%;
  place-self: center;
}
.embed-tool__caption {
  width: 60%;
  place-self: center;
  margin-top: 7px;
  text-align: center;
}
.embed-tool__caption[contentEditable=true][data-placeholder]::before {
  position: absolute;
  content: attr(data-placeholder);
  color: #707684;
  font-weight: normal;
  opacity: 0;
}
.embed-tool__caption[contentEditable=true][data-placeholder]:empty::before {
  opacity: 1;
}
.embed-tool__caption[contentEditable=true][data-placeholder]:empty:focus::before {
  opacity: 0;
}

@keyframes embed-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.img__layout {
  display: grid;
  grid-gap: 20px;
  padding: 40px 20%;
}
.img__layout li label {
  background-color: #f1f1f1;
  background-image: url("https://i.imgur.com/eeIdnm4.jpg");
  position: relative;
  border: thin solid #aeaeae;
}
.img__layout.row li:nth-child(1) {
  grid-area: 1/1/2/4;
}
.img__layout.row li:nth-child(1) label {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.img__layout.row li {
  grid-row: 2/3;
}
.img__layout.row li label {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.img__layout.column li:nth-child(1) {
  grid-area: 1/1/4/3;
}
.img__layout.column li:nth-child(1) label {
  display: block;
  width: 100%;
  padding-top: 150%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.img__layout.column li {
  grid-column: 3/4;
}
.img__layout.column li label {
  display: block;
  width: 100%;
  padding-top: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.img__layout.masonry li:nth-child(1) {
  grid-area: 1/1/3/2;
}
.img__layout.masonry li:nth-child(1) label {
  display: block;
  width: 100%;
  padding-top: 150%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.img__layout.masonry li:nth-child(2) {
  grid-area: 1/2/2/3;
}
.img__layout.masonry li:nth-child(2) label {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.img__layout.masonry li:nth-child(3) {
  grid-area: 3/1/4/2;
}
.img__layout.masonry li:nth-child(3) label {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.img__layout.masonry li:nth-child(4) {
  grid-area: 2/2/4/3;
}
.img__layout.masonry li:nth-child(4) label {
  display: block;
  width: 100%;
  padding-top: 150%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

html {
  font-size: 14px;
}

body {
  font-family: "Barlow", sans-serif;
  overflow: hidden;
  font-weight: 400;
  width: 100vw;
  margin: 0;
}

main {
  box-shadow: 1px 1px 4px #dbdbdb;
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 15% 1fr;
  border-radius: 5px;
}

button,
li,
label,
svg {
  cursor: pointer;
}

button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: thin solid #f1f1f1;
  border-radius: 5px;
  transition: all ease-in-out 0.3s;
  box-shadow: 1px 1px 4px #dbdbdb;
  background-color: #ffffff;
  padding: 10px;
  font-weight: 600;
}
button svg {
  width: 20px;
  height: 20px;
}
button:hover {
  background-color: #000000;
  color: #ffffff;
}
button:hover svg {
  fill: #ffffff;
}

.fade-out {
  -webkit-animation: fade-out 0.3s ease-out both;
  animation: fade-out 0.3s ease-out both;
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 425px) {
  main {
    padding-top: 0;
    padding-bottom: 60px;
  }
}

/*# sourceMappingURL=styles.css.map */
