input {
    background-color: white;
    /* color: #9c3400; */
}

.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

body {
  /* background-color: black; */
}

.submenu {
  width: calc(100vw + 2.82vw);
}

.submenu2 {
  width: calc(100vw - 3.70vw);
}

.clip-custom {
  clip-path: polygon(70% 0%, 100% 0%, 100% 100%);
}

.alert-enter {
        animation: slideIn 0.3s ease-out;
    }

    .alert-exit {
        animation: slideOut 0.3s ease-in;
    }

    @keyframes slideIn {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes slideOut {
        from {
            transform: translateY(0);
            opacity: 1;
        }

        to {
            transform: translateY(-100%);
            opacity: 0;
        }
    }