/* ==================== GLOBAL STYLES ======================= */
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,
sub,
sup,
tt,
var,
b,
u,
i,
center,
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,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* 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;
}
/* ================== RESET  =================== */
html {
  font-family: "Inter", sans-serif;
  content: "test";
  background: var(--base);
  color: var(--basecontrast);
}
body {
  margin: 0;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 400;
}
div,
section,
article,
side,
main,
figure {
  box-sizing: border-box;
}
/* ================== HELPERS  =================== */
img {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}
button {
  border: none;
}
button:focus {
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1;
}
ol,
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
textarea:focus,
input:focus {
  outline: none;
}
figure,
p {
  margin-block-start: unset;
  margin-block-end: unset;
  margin-inline-start: unset;
  margin-inline-end: unset;
}
input[type="radio"] {
  margin: 0;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  border: 1px solid var(--basedark);
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  width: 100%;
  padding: 7px 5px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1;
}
input[name="search"] {
  border: none !important;
  box-shadow: none !important;
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
  outline: 0 none !important;
}
table {
  border-collapse: collapse;
  width: 100%;
}
.text-helper {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}
.error_border {
  border: 1px solid var(--red);
}
/* ================== LAYOUT  =================== */
.sides {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.main {
  display: flex;
  flex-wrap: wrap;
}
.container {
  margin: 0 auto;
}
.container-col {
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0, auto) minmax(
      0,
      max-content
    );
}
.clearfix {
  flex-basis: 100%;
  width: 0;
}
.extc-g {
  color: #58cc00;
}
.extc-g2 {
  color: #008000;
}
.extc-o {
  color: #ffa500;
}
.extc-r {
  color: #cc0003;
}
/* =================  LOADERS =================== */
.loading {
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  position: relative;
  padding: 2px;
  background: var(--enable);
}
.loading_spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader {
  background: var(--enablecontrast);
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  animation: cssload-wave 2s linear infinite;
  -o-animation: cssload-wave 2s linear infinite;
  -ms-animation: cssload-wave 2s linear infinite;
  -webkit-animation: cssload-wave 2s linear infinite;
  -moz-animation: cssload-wave 2s linear infinite;
}
@keyframes cssload-wave {
  0% {
    left: 0%;
    right: 100%;
    width: 0%;
  }
  10% {
    left: 0%;
    right: 75%;
    width: 25%;
  }
  90% {
    right: 0%;
    left: 75%;
    width: 25%;
  }
  100% {
    left: 100%;
    right: 0%;
    width: 0%;
  }
}
@-o-keyframes cssload-wave {
  0% {
    left: 0%;
    right: 100%;
    width: 0%;
  }
  10% {
    left: 0%;
    right: 75%;
    width: 25%;
  }
  90% {
    right: 0%;
    left: 75%;
    width: 25%;
  }
  100% {
    left: 100%;
    right: 0%;
    width: 0%;
  }
}
@-ms-keyframes cssload-wave {
  0% {
    left: 0%;
    right: 100%;
    width: 0%;
  }
  10% {
    left: 0%;
    right: 75%;
    width: 25%;
  }
  90% {
    right: 0%;
    left: 75%;
    width: 25%;
  }
  100% {
    left: 100%;
    right: 0%;
    width: 0%;
  }
}
@-webkit-keyframes cssload-wave {
  0% {
    left: 0%;
    right: 100%;
    width: 0%;
  }
  10% {
    left: 0%;
    right: 75%;
    width: 25%;
  }
  90% {
    right: 0%;
    left: 75%;
    width: 25%;
  }
  100% {
    left: 100%;
    right: 0%;
    width: 0%;
  }
}
@-moz-keyframes cssload-wave {
  0% {
    left: 0%;
    right: 100%;
    width: 0%;
  }
  10% {
    left: 0%;
    right: 75%;
    width: 25%;
  }
  90% {
    right: 0%;
    left: 75%;
    width: 25%;
  }
  100% {
    left: 100%;
    right: 0%;
    width: 0%;
  }
}
.spinner_wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.spinner {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid var(--enable);
  border-right-color: transparent;
  border-radius: 50%;
  animation: cssload-spinner 0.75s linear infinite;
  -o-animation: cssload-spinner 0.75s linear infinite;
  -ms-animation: cssload-spinner 0.75s linear infinite;
  -webkit-animation: cssload-spinner 0.75s linear infinite;
  -moz-animation: cssload-spinner 0.75s linear infinite;
}
@keyframes cssload-spinner {
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes cssload-spinner {
  100% {
    transform: rotate(360deg);
  }
}
@-ms-keyframes cssload-spinner {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes cssload-spinner {
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes cssload-spinner {
  100% {
    transform: rotate(360deg);
  }
}
/* ================== SHADOWS  =================== */
.shadow-baselight {
  box-shadow: 0 1px 8px 0 var(--baselight);
}
.shadow-basedark {
  box-shadow: 0 1px 8px 0 var(--basedark);
}
.shadow-black {
  box-shadow: 0 1px 8px 0 var(--black);
}
.shadow-card {
  box-shadow: 0 4px 8px rgb(0 0 0 / 15%);
}
/* ================== BUTTONS  =================== */
.button-default {
  color: var(--defaultcontrast);
  background: var(--default);
}
.button-defaultcontrast {
  color: var(--default);
  background: var(--defaultcontrast);
}
.button-enable {
  color: var(--enablecontrast);
  background: var(--enable);
}
.button-enablecontrast {
  color: var(--enable);
  background: var(--enablecontrast);
}
.button-disable {
  color: var(--disablecontrast);
  background: var(--disable);
}
.button-disablecontrast {
  color: var(--disable);
  background: var(--disablecontrast);
}
/* ================== HOVER  =================== */
.btn_hover_default:hover {
  color: var(--defaultcontrast);
  background: var(--default);
}
.btn_hover_defaultcontrast:hover {
  color: var(--default);
  background: var(--defaultcontrast);
}
.btn_hover_enable:hover {
  color: var(--enablecontrast);
  background: var(--enable);
}
.btn_hover_enablecontrast:hover {
  color: var(--enable);
  background: var(--enablecontrast);
}
.btn_hover_disable:hover {
  color: var(--disablecontrast);
  background: var(--disable);
}
.btn_hover_disablecontrast:hover {
  color: var(--disable);
  background: var(--disablecontrast);
}
.shadow_hover_light:hover {
  box-shadow: 0 1px 8px 0 var(--baselight);
}
.shadow_hover_dark:hover {
  box-shadow: 0 1px 8px 0 var(--basedark);
}
.text_hover_enable:hover {
  color: var(--enable);
}
.text_hover_disable:hover {
  color: var(--disable);
}
.text_hover_default:hover {
  color: var(--default);
}
/* ================== INPUT SPINNER  =================== */
.custom_input_spinner {
  justify-content: center;
  align-items: center;
  border: 1px solid var(--default);
  height: fit-content;
  width: fit-content;
  display: inline-flex;
}
.custom_input_spinner button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: var(--default);
  color: var(--defaultcontrast);
  cursor: pointer;
}
.custom_input_spinner input {
  height: 25px;
  width: 40px;
  text-align: center;
  box-sizing: border-box;
  border: none;
}
/* ================== INPUT  =================== */
.custom_select {
  position: relative;
}
.custom_select_input {
  border: 1px solid var(--baselight);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.custom_select_options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--baselight);
  border-radius: 4px;
  margin-top: 3px;
  z-index: 9;
}
.custom_select_option {
  cursor: pointer;
  padding: 10px;
}
.custom_select_option:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.custom_select_option:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.custom_select_option:hover {
  background: var(--default);
  color: var(--defaultcontrast);
}
.custom_select_option.selected {
  background: var(--enable);
  color: var(--enablecontrast);
}
/* ================== CHECKBOX  =================== */
.custom_checkbox_wrapper {
  height: 20px;
  width: 20px;
}
.custom_checkbox_container {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom_checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--enablecontrast);
  border: 1px solid var(--enable);
  border-radius: 4px;
  box-sizing: border-box;
}
.custom_checkbox_container .custom_checkbox:checked ~ .checkmark {
  background: var(--enable);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom_checkbox_container .custom_checkbox:checked ~ .checkmark:after {
  display: block;
}
.custom_checkbox_container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--enablecontrast);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* ================== RADIO  =================== */
.custom_radio_wrapper {
  height: 20px;
  width: 20px;
}
.custom_radio_container {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom_radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmarkradio {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--enablecontrast);
  border: 1px solid var(--enable);
  border-radius: 50%;
  box-sizing: border-box;
}
.checkmarkradio:after {
  content: "";
  position: absolute;
  display: none;
}
.custom_radio_container .custom_radio:checked ~ .checkmarkradio:after {
  display: block;
}
.custom_radio_container .checkmarkradio:after {
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--enable);
  transform: translate(-50%, -50%);
}
/* ================== TABS  =================== */
.tab_pills {
  display: flex;
  gap: 5px;
}
.tab_pills .pill {
  background: var(--basedarkcontrast);
  color: var(--defaultcontrast);
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.tab_pills .pill.active {
  background: var(--enable);
  color: var(--enablecontrast);
}
.sortin_pill {
  background: var(--enable);
  color: var(--enablecontrast);
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
}
.sortin_pill.active {
  background: var(--enable);
  color: var(--enablecontrast);
}
/* ================== MODAL  =================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 60%);
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 999999;
}
.modal_box {
  margin: auto;
}
.modal_xs {
  width: 20%;
  max-height: 20%;
}
.modal_s {
  width: 40%;
  max-height: 40%;
}
.modal_m {
  width: 60%;
  max-height: 60%;
}
.modal_l {
  width: 80%;
  max-height: 80%;
}
.modal_xl {
  width: 95%;
  max-height: 95%;
}
/* ================== ALERTS  =================== */
.custom-alert {
  padding: 15px;
  box-shadow: 4px 6px 8px 1px rgb(108 84 84 / 30%);
  border-radius: 2px 10px;
  width: 250px;
  margin: 10px;
  font-weight: 600;
}
.custom-alert.success {
  background: var(--green);
  color: var(--white);
}
.custom-alert.danger {
  background: var(--red);
  color: var(--white);
}
/* ================== HEADER  =================== */
.header_triangle {
  display: flex;
  align-items: center;
  height: 0px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.header_triangle:before {
  content: "";
  width: 0;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--enable);
  margin-right: 10px;
}
.messages li {
  font-size: 16px;
  text-align: center;
  padding: 15px 5px;
  font-weight: bold;
  margin-bottom: 8px;
  box-shadow: 0px 1px 4px 1px rgb(108 84 84 / 60%);
}
.messages li.alert {
  background: black;
  color: white;
}
.messages li.warning {
  background: yellow;
  color: black;
}
.messages li.info {
  background: green;
  color: white;
}
/* ================== PAGE BUTTONS  =================== */
.topTopage {
  position: fixed;
  bottom: 60px;
  right: 5%;
  background: var(--enable);
  color: var(--enablecontrast);
  cursor: pointer;
  box-shadow: 0px 1px 18px 6px rgb(108 84 84 / 30%);
  padding: 10px;
  border-radius: 50%;
  display: none;
  z-index: 1000;
}
/* ================== PAGINATION  =================== */
.page-item.active .page-link {
  background-color: var(--enable);
  border-color: var(--enable);
  color: var(--enablecontrast);
}
.page-link {
  color: var(--enable);
  background-color: var(--enablecontrast);
  border: 1px solid var(--enable);
  padding: 10px;
  display: flex;
}
.page-link:hover {
  background-color: var(--enable);
  border-color: var(--enable);
  color: var(--enablecontrast);
}
/* ================== FEATURES  =================== */
.selected_features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.selected_feature_item {
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 0 4px 0 var(--basedark);
  display: flex;
  gap: 10px;
  align-items: center;
}
.selected_feature_item i {
  font-size: 20px;
  cursor: pointer;
}
.feature-alp {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-alp a {
  box-shadow: 0 4px 8px rgb(0 0 0 / 15%);
  padding: 10px;
  border-radius: 50%;
  color: var(--enable);
  background: var(--enablecontrast);
}
.feature-alp a.active {
  color: var(--enablecontrast);
  background: var(--enable);
}
/* ================== LOGIN  =================== */
.captcha {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}
.login_boxwidth {
  width: 400px;
}
.authbg {
  display: flex;
  width: 100%;
  height: 100%;
  background: radial-gradient(
        circle farthest-side at 0% 50%,
        #fefefe 23.5%,
        #0000 0
      )
      38.85px 55.5px,
    radial-gradient(circle farthest-side at 0% 50%, #efefef 24%, #0000 0)
      35.15px 55.5px,
    linear-gradient(#fefefe 14%, #0000 0, #0000 85%, #fefefe 0) 0 0,
    linear-gradient(
        150deg,
        #fefefe 24%,
        #efefef 0,
        #efefef 26%,
        #0000 0,
        #0000 74%,
        #efefef 0,
        #efefef 76%,
        #fefefe 0
      )
      0 0,
    linear-gradient(
        30deg,
        #fefefe 24%,
        #efefef 0,
        #efefef 26%,
        #0000 0,
        #0000 74%,
        #efefef 0,
        #efefef 76%,
        #fefefe 0
      )
      0 0,
    linear-gradient(90deg, #efefef 2%, #fefefe 0, #fefefe 98%, #efefef 0%) 0 0
      #fefefe;
  background-size: 74px 111px;
  background-color: #fefefe;
}
/* ================== CCCARD  =================== */
.cc_card {
  width: 400px;
  background-image: linear-gradient(
    154deg,
    transparent,
    var(--enable),
    var(--enable)
  );
  border-radius: 20px;
  box-shadow: 3px 3px 10px 0px rgb(0 0 0);
  height: 200px;
}
.cc_card_front,
.cc_card_back {
  padding: 10px 20px;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: -webkit-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  cursor: pointer;
}
.turn {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cc_card_back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
/* ================== ACCOUNT  =================== */
.account_detail_table tr:nth-of-type(odd) {
  background: var(--baselight);
  color: var(--baselightcontrast);
}
.paymenttable td {
  border: 1px solid var(--basedark);
  padding: 10px;
}
.paymenttable tr:first-child td:first-child {
  border-top: none;
  border-left: none;
}
.paymenttable tr:first-child td:not(:first-child),
.paymenttable tr:not(:first-child) td:first-child {
  background: var(--baselight);
  color: var(--baselightcontrast);
}
.paymenttable td:has(> .selected) {
  background: #6fdddd;
}
.cc_card_total_payment_container.selected {
  background: #6fdddd;
}
/* ================== ORDER  =================== */
.orderpaymenttable td {
  border: 1px solid var(--basedark);
  padding: 5px;
}
.orderpaymenttable tr:first-child td:first-child {
  border-top: none;
  border-left: none;
}
.orderpaymenttable tr:first-child td:not(:first-child),
.orderpaymenttable tr:not(:first-child) td:first-child {
  background: var(--baselight);
  color: var(--baselightcontrast);
}
.orderpaymenttable td:has(> .selected) {
  background: #6fdddd;
}
/* ================== SIDEMENU  =================== */
.sidemenu_content {
  width: 0;
  height: 0;
  position: fixed;
  z-index: 9999;
  padding: 15px 5px 5px 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow: auto;
}
.sidemenu_open {
  top: 0 !important;
  left: 0 !important;
  width: fit-content !important;
  height: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.sidemenu_content.open_left {
  left: -100%;
  height: 100%;
}
.sidemenu_content.open_right {
  left: 100%;
  height: 100%;
}
.sidemenu_content.open_top {
  top: -100%;
  width: 100%;
}
.sidemenu_content.open_bottom {
  top: 100%;
  width: 100%;
}
.catalogsides {
  border: 1px solid var(--default);
}
.catalogsides .catalogside:not(:last-child) {
  border-bottom: 1px solid var(--default);
}

/* .catalogside ::placeholder {
	color: var(--default);
} */
/* ================== MEDIA  =================== */
@media only screen and (pointer: coarse) and (min-device-width: 280px) and (max-device-width: 320px) {
  .container {
    width: 260px;
  }
  .container-w20 {
    width: 52px;
  }
  .container-w25 {
    width: 65px;
  }
  .container-w40 {
    width: 104px;
  }
  .container-w50 {
    width: 130px;
  }
  .container-w60 {
    width: 156px;
  }
  .container-w75 {
    width: 195px;
  }
  .container-w80 {
    width: 208px;
  }
  .container-w100 {
    width: 260px;
  }
  .login_boxwidth {
    width: 240px;
  }
  .authbg {
    background-size: contain;
  }
}
@media only screen and (pointer: coarse) and (min-device-width: 320px) and (max-device-width: 360px) {
  .container {
    width: 300px;
  }
  .container-w20 {
    width: 60px;
  }
  .container-w25 {
    width: 75px;
  }
  .container-w40 {
    width: 120px;
  }
  .container-w50 {
    width: 150px;
  }
  .container-w60 {
    width: 180px;
  }
  .container-w75 {
    width: 225px;
  }
  .container-w80 {
    width: 240px;
  }
  .container-w100 {
    width: 300px;
  }
  .login_boxwidth {
    width: 300px;
  }
  .authbg {
    background-size: contain;
  }
}
@media only screen and (pointer: coarse) and (min-device-width: 360px) and (max-device-width: 480px) {
  .container {
    width: 340px;
  }
  .container-w20 {
    width: 68px;
  }
  .container-w25 {
    width: 85px;
  }
  .container-w40 {
    width: 136px;
  }
  .container-w50 {
    width: 170px;
  }
  .container-w60 {
    width: 204px;
  }
  .container-w75 {
    width: 255px;
  }
  .container-w80 {
    width: 272px;
  }
  .container-w100 {
    width: 340px;
  }
  .login_boxwidth {
    width: 300px;
  }
  .authbg {
    background-size: contain;
  }
}
@media only screen and (pointer: coarse) and (min-device-width: 480px) and (max-device-width: 600px) {
  .container {
    width: 460px;
  }
  .container-w20 {
    width: 92px;
  }
  .container-w25 {
    width: 115px;
  }
  .container-w40 {
    width: 184px;
  }
  .container-w50 {
    width: 230px;
  }
  .container-w60 {
    width: 276px;
  }
  .container-w75 {
    width: 345px;
  }
  .container-w80 {
    width: 368px;
  }
  .container-w100 {
    width: 460px;
  }
  .login_boxwidth {
    width: 300px;
  }
  .authbg {
    background-size: contain;
  }
}
@media only screen and (pointer: coarse) and (min-device-width: 600px) and (max-device-width: 768px) {
  .container {
    width: 580px;
  }
  .container-w20 {
    width: 116px;
  }
  .container-w25 {
    width: 145px;
  }
  .container-w40 {
    width: 232px;
  }
  .container-w50 {
    width: 290px;
  }
  .container-w60 {
    width: 348px;
  }
  .container-w75 {
    width: 435px;
  }
  .container-w80 {
    width: 464px;
  }
  .container-w100 {
    width: 580px;
  }
  .login_boxwidth {
    width: 300px;
  }
  .authbg {
    background-size: contain;
  }
}
@media only screen and (pointer: coarse) and (min-device-width: 768px) and (max-device-width: 900px) {
  .container {
    width: 740px;
  }
  .container-w20 {
    width: 148px;
  }
  .container-w25 {
    width: 185px;
  }
  .container-w40 {
    width: 296px;
  }
  .container-w50 {
    width: 370px;
  }
  .container-w60 {
    width: 444px;
  }
  .container-w75 {
    width: 555px;
  }
  .container-w80 {
    width: 592px;
  }
  .container-w100 {
    width: 740px;
  }
  .login_boxwidth {
    width: 300px;
  }
  .authbg {
    background-size: contain;
  }
}
@media only screen and (pointer: coarse) and (min-device-width: 900px) and (max-device-width: 1024px) {
  .container {
    width: 880px;
  }
  .container-w20 {
    width: 176px;
  }
  .container-w25 {
    width: 220px;
  }
  .container-w40 {
    width: 352px;
  }
  .container-w50 {
    width: 440px;
  }
  .container-w60 {
    width: 528px;
  }
  .container-w75 {
    width: 660px;
  }
  .container-w80 {
    width: 704px;
  }
  .container-w100 {
    width: 880px;
  }
  .login_boxwidth {
    width: 300px;
  }
  .authbg {
    background-size: contain;
  }
}
@media only screen and (pointer: coarse) and (min-device-width: 1024px) {
  .container {
    width: 1000px;
  }
  .container-w20 {
    width: 200px;
  }
  .container-w25 {
    width: 250px;
  }
  .container-w40 {
    width: 400px;
  }
  .container-w50 {
    width: 5000px;
  }
  .container-w60 {
    width: 600px;
  }
  .container-w75 {
    width: 750px;
  }
  .container-w80 {
    width: 800px;
  }
  .container-w100 {
    width: 1000px;
  }
  .login_boxwidth {
    width: 300px;
  }
  .authbg {
    background-size: contain;
  }
}

@media only screen and (hover: hover) and (pointer: fine) and (max-width: 1024px) {
  .pagesides {
    display: grid;
    grid-template-columns: minmax(0, calc((100% - 900px) / 2)) minmax(0, auto) minmax(
        0,
        calc((100% - 900px) / 2)
      );
  }
  .container {
    width: 900px;
  }
  .container-w20 {
    width: 180px;
  }
  .container-w25 {
    width: 225px;
  }
  .container-w40 {
    width: 360px;
  }
  .container-w50 {
    width: 450px;
  }
  .container-w60 {
    width: 540px;
  }
  .container-w75 {
    width: 675px;
  }
  .container-w80 {
    width: 720px;
  }
  .container-w100 {
    width: 900px;
  }
  .authbg {
    background-size: contain;
  }
}

@media only screen and (hover: hover) and (pointer: fine) and (max-width: 1200px) {
  .pagesides {
    display: grid;
    grid-template-columns: minmax(0, calc((100% - 1000px) / 2)) minmax(0, auto) minmax(
        0,
        calc((100% - 1000px) / 2)
      );
  }
  .container {
    width: 1000px;
  }
  .container-w20 {
    width: 200px;
  }
  .container-w25 {
    width: 250px;
  }
  .container-w40 {
    width: 400px;
  }
  .container-w50 {
    width: 500px;
  }
  .container-w60 {
    width: 600px;
  }
  .container-w75 {
    width: 750px;
  }
  .container-w80 {
    width: 800px;
  }
  .container-w100 {
    width: 1000px;
  }
}

@media only screen and (hover: hover) and (pointer: fine) and (min-width: 1201px) {
  .pagesides {
    display: grid;
    grid-template-columns: minmax(0, calc((100% - 1200px) / 2)) minmax(0, auto) minmax(
        0,
        calc((100% - 1200px) / 2)
      );
  }
  .container {
    width: 1200px;
  }
  .container-w20 {
    width: 240px;
  }
  .container-w25 {
    width: 300px;
  }
  .container-w40 {
    width: 480px;
  }
  .container-w50 {
    width: 600px;
  }
  .container-w60 {
    width: 720px;
  }
  .container-w75 {
    width: 900px;
  }
  .container-w80 {
    width: 960px;
  }
  .container-w100 {
    width: 1200px;
  }
}

@media only screen and (hover: hover) and (pointer: fine) and (min-width: 1301px) {
  .pagesides {
    display: grid;
    grid-template-columns: minmax(0, calc((100% - 1300px) / 2)) minmax(0, auto) minmax(
        0,
        calc((100% - 1300px) / 2)
      );
  }
  .container {
    width: 1300px;
  }
  .container-w20 {
    width: 240px;
  }
  .container-w25 {
    width: 300px;
  }
  .container-w40 {
    width: 480px;
  }
  .container-w50 {
    width: 600px;
  }
  .container-w60 {
    width: 720px;
  }
  .container-w75 {
    width: 900px;
  }
  .container-w80 {
    width: 960px;
  }
  .container-w100 {
    width: 1300px;
  }
}
  