:root {
    --bg-color: #202226;
    --bg-color-2: #444444;
    --bg-color-3: #171717;
    --bg-footer: #131313;
    --text-color: #F5F5F5;
    --first-color: #4bdd22;
    --red-color: red;
    scroll-behavior: smooth;
    --font-header: 30px;
    --box-shadow: #00000030;
    --yellow-color: yellow;

}

.cl-first-color{
    color: var(--first-color);
}

.cl-yellow{
    color: var(--yellow-color);
}

.btn:hover{
    color: var(--text-color);
}

.flex-1{
    flex: 1;
}

body {
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    position: relative;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
    transition: 0.2s;
}
p {
    margin: 0;
}
a {
    text-decoration: none;
}
a:hover {
    color: var(--first-color) !important;
}

select {
    max-height: min(100px, 90vh);
}

.txt-xl {
    font-size: 1.4rem;
}
.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}

.shadow {
    box-shadow: 0px 0px 10px #00000060;
}

.pointer {
    cursor: pointer;
}

.title {
    color: var(--first-color);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

.default-color {
    color: #818284 !important;
}
.txt-first-color {
    color: var(--first-color) !important;
}
.txt-white {
    color: var(--text-color)
}

.page-container {
    width: 100%; 
    min-height: calc(100vh - 234.5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    padding: 50px 30px;
}
.page-container > * {
    max-width: min(1400px, 90vw);
    width: 100%;
}

.title {
    font-size: 1.7rem;
}
.subtitle {
    margin-top: -30px;
    color: #9b9b9b;
}

.input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.input-group label {
    color: var(--first-color);
    font-weight: bold;
    padding: 0px;
}
.input-group input, .input-group textarea, .input-group select, .bootstrap-select > .dropdown-toggle, .bootstrap-select .dropdown-menu{
	width: 100%;
	border: 2px solid var(--bg-color-2);
	background-color: var(--bg-color-2);
	border-radius: 5px !important;
	padding: 10px 15px;
	color: var(--text-color);
	outline: none;
	font-size: 14px;
}

.dropdown-menu, .dropdown-menu, .dropdown-item:focus, .dropdown-item:hover{
	border: none;
	background-color: var(--bg-color-2);
	border-radius: none;
	color: var(--text-color);
	outline: none;
	font-size: 14px;
}

.dropdown-item.active, .dropdown-item:active{
    background-color: #52525e;
    border-radius: 5px;

}

.dropdown-item{
    color: var(--text-color);
}

textarea {
    resize: none;
}
.input-group input:focus, .input-group textarea:focus {
    border-color: var(--first-color);
}
.form button {
    background-color: var(--first-color);
    color: var(--text-color);
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
}
.form button:hover {
    filter: brightness(1.1);
}
.form button:focus {
    box-shadow: 0px 0px 5px var(--first-color);
}

/* CHECHBOX */
.checkbox input {
    display: none;
}
.checkbox label {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color-2);
    border: 2px solid #1f6a09;
    border-radius: 4px;
    transition: 0.2s;
    overflow: hidden;
    cursor: pointer;
}
.checkbox label:hover {
    filter: brightness(1.1);
}
.checkbox label:after {
    content: 'L';
    transition: 0.2s;
    transform: scaleX(-1) rotate(-45deg);
    top: 20px;
    left: 1px;
    opacity: 0;
    color: var(--first-color);
    position: relative;
}
.checkbox input:checked ~ label {
    border-color: var(--first-color);
}
.checkbox input:checked ~ label:after {
    transform: scaleX(-1) rotate(-45deg);
    top: -2px;
    opacity: 1;
}
/* FIM CHECHBOX */

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
    z-index: 10;
}
.whatsapp img {
    width: 40px;
    height: auto;    
    filter: drop-shadow(0px 0px 10px #00000060);
    animation: whatsapp;
    animation-duration: 5s;
    animation-direction: normal;
    animation-iteration-count: infinite;
    animation-delay: 10s;
}
.whatsapp:hover img {
    width: 80px;
    transform: rotate(0deg) !important;
}
/* FIM WHATSAPP */

.span-error{
    font-size: 14px;
    color: var(--red-color);
}

.dropdown-menu-lg-start[data-bs-popper] {
	right: auto;
	left: -86px;
}
