/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

body {
    font-family: Arial, Helvetica, sans-serif;
}

.gif-img {
    max-width: 240px;
    margin: 0 auto;
}

.title-img {
    max-width: 350px;
    margin: 0 auto;
}

.image-auto img {
    width: auto;
}

.rg-2 {
    row-gap: 20px;
}

.form-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    border-radius: 22px;
    position: unset;
}

.form-container form {
    width: 100%;
    margin: 0;
}

.form-container .form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.form-container .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.form-container label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #F82602;
    line-height: 20px;
    margin: 0;
    font-size: 18px;
    text-transform: capitalize;
}

#promo-container {
    width: 100%;
    /* position: relative; */
}

select#promo-info,
.form-container input[type="text"] {
    width: 100%;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    background-color: #f8f8f8;
    margin: 0;
}

.form-container input[disabled] {
    opacity: 0.5;
}

.form-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    padding: 12px;
    background-color: var(--primary-color);
}

.form-img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.submit-btn {
    width: 40%;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-align: center;
    margin: 20px auto 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 13.8309px;
    background: #F91223;
    min-height: unset;
    height: unset;
    line-height: normal;
}

h2#swal2-title {
    justify-content: center;
}

.list_code {
    position: absolute;
    z-index: 99999;
    display: none;
    max-width: 100%;
    min-width: 323px;
    background: #fff;
    color: #000;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

p.note {
    color: red;
    text-align: center;
    display: none;
    margin: 10px 0 0;
}

.list_code:not(.dont).active {
    display: block;
}

.list_code td {
    color: #000;
    border: 0 !important;
    white-space: normal;
    word-break: break-word;
    height: auto !important;
    text-align: left;
}

.list_code th {
    border: 0 !important;
    text-transform: none;
}

.list_code table.promo-table {
    margin: 0;
    display: block;
    overflow: hidden;
    table-layout: fixed;
    position: relative;
    /* table-layout: auto; */
}

.list_code tbody>tr.active,
.list_code tbody>tr:hover {
    background: #0000000f;
    cursor: pointer;
}

.list_code td:nth-child(2) {
    min-width: 228px;
}

@media only screen and (max-width: 1000px) {
    .form-container .form-row {
        flex-direction: column;
    }
}

@media only screen and (max-width: 350px) {

    .list_code,
    .list_code td:nth-child(2) {
        min-width: unset;
    }
}




.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-nav li + li::before {
  content: "|";
  margin: 0 10px;
  color: #ccc;
}

.footer-nav a {
  text-decoration: none;
  color: #444;
  text-transform: uppercase;
  transition: color 0.2s ease-in-out;
}

.footer-nav a:hover {
  color: #E60E95;
}