#get_ticket_id {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
    gap: 40px 0;
}

input#add_ticket_id {
    width: 256px;
    border: 1px solid var(--grey-3);
    padding: 8px 16px;
    border-radius: 10px;
    height: 50px;
    font-size: 18px;
    color: var(--grey-3);
    font-family: Roboto, sans-serif;
	text-transform: uppercase;
	text-align: center;
}
#add_ticket_id_submit {
    border-radius: 10px;
    padding: 14px 32px;
    line-height: normal;
    text-align: center;
    font-family: 'Michroma', sans-serif;
    border: 0;
    display: inline-flex;
    flex-direction: column;
    width: fit-content;
    color: white;
    transition: 0.5s;
    background-color: var(--sBasic_1);
}
#add_ticket_id_submit:hover {
	cursor: pointer;
    transition: 0.5s;
    background-color: var(--sBasic_2);
}
.id_row.add_ticket_id_row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}


.id_row.add_ticket_id_row label {
    display: flex;
    gap: 5px;
    padding: 15px 0;
    font-weight: bolder;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
}



.get_ticket_answer {
    border: 0px solid black;
    min-width: 256px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: calc(100% - 40px);
    font-size: 18px;
    padding: 40px 40px;
    border-radius: 10px;
}
.ticket_answer_text {
    padding: 5px 0 0 0;
    text-transform: uppercase;
    font-weight: bolder;
	text-align: center;
}

.wrong_id {
	background: rgba(217, 40, 40, 0.425);;
	box-shadow: 0 0 0 0 rgba(228, 64, 64, 0.623);
	animation: pulse-wrong 2s infinite;
}
.good_id {
	background: rgba(116, 241, 58, 0.6);;
	box-shadow: 0 0 0 0 rgba(75, 255, 20, 0.774);
	animation: pulse-good 2s infinite;
}
@keyframes pulse-wrong {
	0% {
		box-shadow: 0 0 0 0 rgba(252, 12, 12, 0.7);
	}
	
	70% {
		box-shadow: 0 0 0 10px rgba(231, 121, 121, 0.26);
	}
	
	100% {
		box-shadow: 0 0 0 10px rgba(231, 121, 121, 0);
	}
}
@keyframes pulse-good {
	0% {
		box-shadow: 0 0 0 0 rgba(88, 252, 12, 0.7);
	}
	
	70% {
		box-shadow: 0 0 0 10px rgba(174, 231, 121, 0.26);
	}
	
	100% {
		box-shadow: 0 0 0 10px rgba(152, 231, 121, 0);
	}
}

body.page-template-page-seclogin #top_gradient,
body.page-template-page-seclogin #footer,
body.page-template-page-seclogin #header {
    display: none !important;
}
body.page-template-page-seclogin {
   /*overflow: hidden !important;*/
}


.ticket_ids_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 5px;
    justify-content: center;
}
.ticket_ids_list li {
    width: calc(100% / 4 - 4px);
    list-style: none;
    padding: 5px;
    margin: 0;
    color: black;
    background: white;
    border: 1px solid #efefef;
    -webkit-box-shadow: inset 0px 0px 3px 2px rgb(215 215 215 / 75%);
    -moz-box-shadow: inset 0px 0px 3px 2px rgb(215 215 215 / 75%);
    box-shadow: inset 0px 0px 3px 2px rgb(215 215 215 / 75%);
    text-align: center;
}
.ticket_ids_list_rows {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 10px;
}
.ticket_ids_list_rows .column {
    width: calc(100% / 3 - 10px);
    background: var(--sBasic_1);
    border-radius: 20px;
    padding: 10px 10px 20px 10px;
    color: white;
    text-align: center;
    overflow: hidden;
}
.ticket_ids_list_rows h3 {
    background: var(--sBasic_2) !important;
    font-size: 16px;
    font-family: 'Michroma';
    margin-top: -10px;
    margin-left: -10px;
    width: calc(100% + 20px);
    border-radius: 20px 20px 0 0;
}
li.ticket-item.active,
li.ticket-item:hover {
    background: #987952;
    transition: 0.5s;
    color: white;
    cursor: pointer;
    box-shadow: none;
    border: 1px solid #987952;
}
@media only screen and (max-width: 1420px) {
    .ticket_ids_list li {
        width: calc(100% / 3 - 4px);
    }
}
@media only screen and (max-width: 1080px) {
    .ticket_ids_list_rows .column {
        width: calc(100% / 2 - 10px);
    }
}
@media only screen and (max-width: 700px) {
    .ticket_ids_list li {
        width: calc(100% / 3 - 4px);
    }
    .ticket_ids_list_rows .column {
        width: calc(100% / 1 - 10px);
    }
}