/* SCROLL STYLES */
::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background-color: var(--faded-color-100);
}

::-webkit-scrollbar-thumb {
  background-color: var(--faded-color-400);
  transition: colors 300ms;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--faded-color-500);
}

::-webkit-scrollbar-thumb:active {
  background-color: var(--faded-color-600);
}
/* SCROLL STYLES */

* {
  -webkit-tap-highlight-color: transparent !important;
}

* {
  outline: none !important;
  box-sizing: border-box;
}

*:focus,
*:active {
  outline: none !important;
}

body {
  font-family: "Poppins";
  padding: 0;
  margin: 0;
  font-size: 12px;
}

body,
.main {
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.main {
  display: flex;
  background-color: var(--secondary-color-400);
}

.content-container {
  margin-left: var(--sidebar-width);
  width: calc(100vw - var(--sidebar-width));
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}

.content {
  padding: 0 10px 0 7px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  position: relative;
  margin: 15% auto;
  padding: 36px 20px 16px 20px;
  width: 80%;
  max-width: 800px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.modal-content-small {
  position: relative;
  margin: 15% auto;
  padding: 36px 20px 16px 20px;
  width: 300px;
  max-width: 500px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 4px;
  right: 6px;
  color: var(--inverse-color-300);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-footer {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  grid-column-end: -1;
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .content-container {
    width: 100vw;
    margin-left: 0;
    padding: 4px 10px;
    gap: 20px 0;
  }

  .content {
    padding: 0;
  }
}
