* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    outline: none;
    font-size: 12px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
  
::-webkit-scrollbar-track {
    background: transparent;
}
  
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
}

body {
    background-color: #f5f7fa;
}

a {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

h1,
h2,
h3,
h4 {
    line-height: 1;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }

.title {
    font-weight: bold;
}

hr {
    border: 0;
    border-top: 1px solid #dedede;
}

input,
select, 
textarea, 
button, 
.button {
    padding: 10px;
    transition: all 0.5s;
    border: none;
    border-radius: 10px;
}

input,
select, 
textarea {
    width: 100%;
    background: none;
    border: 1px solid #dedede;
}

textarea {
    max-height: 100px;
    min-height: 100px;
    max-width: 100%;
    min-width: 100%;
}

input[type="checkbox"] {
    width: auto;
    margin-right: 20px;
}

input:focus, 
select:focus, 
textarea:focus {
    border-color: #178bd8;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    caret-color: white;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

button, 
.button {
    cursor: pointer;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.hidden {
    display: none;
}

.container {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.container-sm {
    max-width: 500px;
    margin: auto;
}

.container-md {
    max-width: 800px;
    margin: auto;
}

.container-lg {
    max-width: 1200px;
    margin: auto;
}

.margin-y {
    margin-top: 20px;
    margin-bottom: 20px;
}

.container-message {
    text-align: center;
}

.container-message h2 + p {
    margin-top: 10px;
}

.columns {
    display: grid;
    gap: 20px;
}

.columns-2 {
    grid-template-columns: 1fr 1fr;
}

.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.button-primary {
    background-color: #178bd8;
    color: #fff;
}

.button-secondary {
    background: none;
    border: 1px solid #178bd8;
    color: #178bd8;
}

.button-tertiary {
    background: none;
    border: 1px solid #dc3545;
    color: #dc3545;
}

form .form-header {
    text-align: center;
}

form .form-header h2 + p {
    margin-top: 10px;
}

form .form-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

form .form-box span {
    display: block;
    color: #666;
    margin-top: 5px;
    font-size: 12px;
}

form .form-box span.info {
    margin-top: 10px;
    padding: 10px;
    background-color: #dedede;
    border-radius: 10px;
}

form a {
    font-weight: bold;
    color: #178bd8;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.container-main {
    padding-bottom: 60px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.bottom-nav ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.bottom-nav a {
    color: #000;
}

.bottom-nav li {
    text-align: center;
}

.bottom-nav span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.order-card:not(:last-child) {
    margin-bottom: 20px;
}

.order-card .order-point h4 {
    margin-bottom: 10px;
}

.order-card .order-point ul li:not(:last-child) {
    margin-bottom: 5px;
}