body {
    position: relative;
    min-height: 100vh;
    font-family: "Lato", sans-serif;
    font-style: normal;
    font-optical-sizing: auto;
    background-color: #f8f8f8;
    padding: 25px 2% 25px 2%;
}

main {
    height: auto;
    padding: 25px 0 95px 0;
}

footer {
    position: absolute;
    bottom: 25px;
    width: 96%;
    height: 80px;
    background: #fff;
    padding: 10px 30px;
}

a {
    color: #222;
    transition: 0.3s all;
    text-decoration: none;
}

a:hover {
    color: rgb(155, 24, 24);
    text-shadow: 0px 0px 1px rgba(34, 34, 34, 0.3);
}

li {
    list-style: none;
}

input::-webkit-inner-spin-button {
    display: none;
}

.btn-danger {
  width: fit-content;
  background-color: #e61a27;
  border-radius: 10px;
}

.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
  font-family: sans-serif;

}

.selected {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
}

.selected img {
  width: 20px;
  border-radius: 4px;
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  z-index: 10;
  max-height: 200px;
  border-radius: 10px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.options.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.option {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.option:hover {
  background-color: #eaeaea;
}

.option img {
  width: 20px;
  border-radius: 4px;
}

textarea:focus,
textarea.form-control:focus,
select.form-select:focus,
.dropdown-toggle:focus,
.nav-link:focus-visible,
input.form-control:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
[type="text"].form-control:focus,
[type="password"].form-control:focus,
[type="email"].form-control:focus,
[type="tel"].form-control:focus,
[contenteditable].form-control:focus {
    box-shadow: none;
    border-color: #e61a27;
    outline: none;
}

.navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

img {
    vertical-align: middle;
}

.btn {
    display: block;
    padding: 8px 32px;
}

.table-dark {
    --bs-table-bg: #e61a27;
}

.accordion-button:not(.collapsed) {
    background-color: #e61a27;
    color: #fff;
}

/*     Navigation     */

.navbar {
    background-color: #fff;
}

.navbar .navbar-brand img {
    width: 180px;
    height: 60px;
}

.navbar .navbar-toggler {
    border: 0;
    font-size: 1rem;
}

.navbar .navbar-nav .nav-item {
    margin: 0 12px;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: #888;
    letter-spacing: 1px;
}

.navbar .navbar-nav .nav-item .nav-link i {
    font-size: 20px;
    margin: -5px 7px 0 0;
    color: #e61a27;
}

.offcanvas .btn-close {
    right: 25px;
}

/*     Home Banner     */

.banner {
    width: 100%;
    height: calc(100vh - 200px);
    overflow: hidden;
}

.banner .cover-image {
    width: 100%;
    height: 100%;
    background-image: url(../images/background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner .cover-image .overlay {
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    width: 100%;
    height: 100%;
}

.log-in {
    background-color: #fff;
    padding: 30px;
    width: 420px;
}

/*     Account frames     */

.acc_login_wrapper {
    position: absolute;
    bottom: -44px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.acc_login {
    background-color: #f8f8f8;
    width: auto;

}

.acc_navlink {
    padding: 6px 14px;
    margin: 2px 0;
    border-radius: 12px;
}

.acc_nav {
    overflow: hidden;
}

.acc_content,
.portfolio,
.sign_form {
    height: 100%;
    padding: 35px 35px;
}

.acc_navlink:hover,
.acc_navlink.active {
    background-color: #f8f8f8;
}

.avatar {
    border-radius: 100%;
    overflow: hidden;
    background-color: #f8f8f8;
}

.product_portfolio {
    border: 2px solid #ededf0;
    min-height: 265px;
}

/*     Merchandising     */


.fridge img {
    width: 85%;
    margin: 0 auto;
}

/*     Custom elements     */

.border-radius-14 {
    border-radius: 14px;
}

.border-radius-16 {
    border-radius: 16px;
}

.border-base {
    border-color: #222;
    transition: 0.3s all;
}

.border-base:hover {
    border-color: rgba(255, 255, 255, 0);
}

.border-transparent {
    border-color: rgba(255, 255, 255, 0);
    transition: 0.3s all;
}

.border-transparent:hover {
    border-color: #222;
}

.border-light-gray {
    border: 1px solid #ddd;
}

.bg-base {
    color: #fff;
    background-color: #222;
    transition: 0.3s all;
}

.bg-base:hover {
    background-color: rgba(255, 255, 255, 0);
    color: #222;
}

.bg-transparent {
    background-color: rgba(255, 255, 255, 0);
    color: #222;
    transition: 0.3s all;
}

.bg-transparent:hover {
    background-color: #222 !important;
    color: #fff;
}

.bg-cola {
    background-color: #e61a27;
    color: #fff;
}

a.bg-cola:hover {
    border: 1px solid #e61a27;
    background-color: #fff;
}

.bg-very-light-gray {
    background-color: #f8f8f8;
}

.text-cola {
    color: #e61a27;
}

.text-light-gray {
    color: #a0a0a0;
}

.shadow-cola {
    -webkit-box-shadow: 0px 18px 40px 0px rgba(230, 26, 39, 0.35);
    -moz-box-shadow: 0px 18px 40px 0px rgba(230, 26, 39, 0.35);
    box-shadow: 0px 18px 40px 0px rgba(230, 26, 39, 0.35);
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-20 {
    font-size: 20px;
}

.w-90 {
    width: 90%;
}

.w-85 {
    width: 85%;
}

.w-80 {
    width: 80%;
}

.w-35 {
    width: 35%;
}

.w-30 {
    width: 30%;
}

.info {
    width: 60%;
    padding: 0 20% 0 0;
}

.req {
    color: #e41e2a;
}

.btn {
    display: block;
    padding: 8px 32px;
}

.idno-p {
    padding: 15px 0 15px 0;
    background-color: #fff;
    border-color: rgb(222, 226, 230);
    border-radius: 6px;
}

.idno-p:hover {
    background-color: #222;
    color: #fff;
}

.phone-prefix {
    padding: 15px 0 15px 0;
    background-color: #f8f8f8;
    border: 1px solid rgb(222, 226, 230);
    border-radius: 6px;
    display: block;
    text-align: center;
}

.ptb-6 {
    padding: 6px 0 6px 0 !important;
}

.photo-button {
    width: 180px;
    height: 140px;
}

.task-example-body {
    border-radius: 16px !important;
    border: 1px solid rgb(222, 226, 230);
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.task-example-body .task-example-title {
    min-height: 38px;
}

.task-example .read-more {
    text-decoration: underline;
    margin-left: 0.5rem;
}

.progress_bar .progress_item {
    background-color: #dedede;
    border-radius: 10px;
    height: 6px;
    width: 22%;
}

.progress_bar .progress_item.active {
    background-color: #e41e2a;
}

.product_portfolio {
    border: 2px solid #ededf0;
    min-height: 265px;
}

.btn-danger {
    width: fit-content;
    background-color: #e61a27;
}

@media screen and (max-width: 768px) {
    body {
        padding: 0 5px;
    }

    .info {
        width: 100%;
        padding: 45px 25px;
    }

    .banner {
        height: 100%;
        overflow: auto;
    }

    .w-35 {
        width: 65% !important;
    }

    .banner .cover-image .overlay {
        background: rgb(2, 0, 36);
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
    }

}

/*     Inbox timeline    */

.timeline-centered {
    position: relative;
    margin-bottom: 30px;
}

.timeline-centered:before,
.timeline-centered:after {
    content: " ";
    display: table;
}

.timeline-centered:after {
    clear: both;
}

.timeline-centered:before,
.timeline-centered:after {
    content: " ";
    display: table;
}

.timeline-centered:after {
    clear: both;
}

.timeline-centered:before {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    background: #f5f5f6;
    left: 12%;
    top: 20px;
    bottom: 20px;
    margin-left: -4px;
}

.timeline-centered .timeline-entry {
    position: relative;
    width: 70%;
    float: left;
    margin: 0 0 70px 121px;
    clear: both;
}

.timeline-centered .timeline-entry:before,
.timeline-centered .timeline-entry:after {
    content: " ";
    display: table;
}

.timeline-centered .timeline-entry:after {
    clear: both;
}

.timeline-centered .timeline-entry:before,
.timeline-centered .timeline-entry:after {
    content: " ";
    display: table;
}

.timeline-centered .timeline-entry:after {
    clear: both;
}

.timeline-centered .timeline-entry.begin {
    margin-bottom: 0;
}

.timeline-centered .timeline-entry .timeline-entry-inner {
    position: relative;
    margin-left: -22px;
}

.timeline-centered .timeline-entry .timeline-entry-inner:before,
.timeline-centered .timeline-entry .timeline-entry-inner:after {
    content: " ";
    display: table;
}

.timeline-centered .timeline-entry .timeline-entry-inner:after {
    clear: both;
}

.timeline-centered .timeline-entry .timeline-entry-inner:before,
.timeline-centered .timeline-entry .timeline-entry-inner:after {
    content: " ";
    display: table;
}

.timeline-centered .timeline-entry .timeline-entry-inner:after {
    clear: both;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
    position: absolute;
    left: -100px;
    text-align: right;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time>span {
    display: block;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time>span:first-child {
    font-size: 15px;
    font-weight: bold;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time>span:last-child {
    font-size: 12px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
    background: #e41e2a;
    color: #fff;
    display: block;
    width: 40px;
    height: 40px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-align: center;
    -moz-box-shadow: 0 0 0 5px #f5f5f6;
    -webkit-box-shadow: 0 0 0 5px #f5f5f6;
    box-shadow: 0 0 0 5px #f5f5f6;
    line-height: 40px;
    font-size: 15px;
    float: left;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
    position: relative;
    background: #f5f5f6;
    padding: 1.7em;
    margin-left: 70px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 9px 9px 0;
    border-color: transparent #f5f5f6 transparent transparent;
    left: 0;
    top: 10px;
    margin-left: -9px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p {
    color: #737881;
    font-family: "Noto Sans", sans-serif;
    font-size: 12px;
    margin: 0;
    line-height: 1.428571429;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p+p {
    margin-top: 15px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 a {
    color: #303641;
}

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 span {
    -webkit-opacity: 0.6;
    -moz-opacity: 0.6;
    opacity: 0.6;
    -ms-filter: alpha(opacity=60);
    filter: alpha(opacity=60);
}

.countdown {
    text-align: center;
    margin-bottom: 15px;
}

.countdown h1 {
    font-size: 18px;
    margin-bottom: 20px;
}

.time {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #fff;
}

.time div {
    background: #1e1e1e;
    padding: 10px 5px;
    border-radius: 10px;
    width: 55px;
}

.time div span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    color: #ccc;
}

@media screen and (max-width: 576px) {
    body {
        padding: 10px 2% 10px 2%;
    }

    main {
        padding: 15px 0 15px 0;
        margin-bottom: 5rem;
    }

    footer {
        bottom: 10px;
    }

    .navbar .navbar-brand img {
        width: 90px;
        height: 30px;
    }

    .banner .cover-image .overlay {
        padding: 50px 20px;
    }

    .acc_content,
    .portfolio,
    .sign_form {
        height: 100%;
        margin-bottom: 0;
        padding: 20px 10px;
    }

    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
        left: -2.5rem;
        text-align: left;
    }

    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
        margin: 3.5rem 1rem 0 -2rem;
    }

    .timeline-centered:before {
        left: 7%;
    }

    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
        margin: 3.5rem 0 0 -5.9rem;
    }

    .photo-button {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding: 10px 2% 10px 2%;
    }

    main {
        padding: 15px 0 15px 0;
        margin-bottom: 5rem;
    }

    footer {
        bottom: 10px;
    }

    .navbar .navbar-brand img {
        width: 90px;
        height: 30px;
    }

    .banner .cover-image .overlay {
        padding: 40px 20px;
    }
}

@media screen and (min-width: 992px) {
    body {
        padding: 10px 2% 10px 2%;
    }

    main {
        padding: 15px 0 15px 0;
        margin-bottom: 5rem;
    }

    footer {
        bottom: 10px;
    }

    .navbar .navbar-brand img {
        width: 120px;
        height: 40px;
    }

    .banner .cover-image .overlay {
        padding: 40px 20px;
    }

    .acc_content,
    .portfolio,
    .sign_form {
        height: 100%;
    }

    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
        left: -1.5rem;
        text-align: left;
    }

    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
        margin: 3.5rem 1rem 0 -1rem;
    }

    .timeline-centered:before {
        left: 2rem;
    }

    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
        margin: 3.5rem 0 0 -5.5rem;
    }
}

@media (min-width: 1400px) {

    .banner .cover-image .overlay {
        padding: 100px 20px;
    }

    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
        left: 0.5rem;
        text-align: left;
    }

    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
        margin: 3.5rem 1rem 0 1rem;
    }

    .timeline-centered:before {
        left: 4rem;
    }

    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
        margin: 3.5rem 0 0 -3.5rem;
    }

}
