﻿/*=======OFFERS===========*/

@keyframes moveUpDownShort {
    0%, 100% {
        top: 0;
    }

    50% {
        top: -8px;
    }
}

#offer-section {
    position: relative
}

.offer-item {
    border-radius: 1em;
    border-right: 5px solid var(--color-main);
    border-bottom: 5px solid var(--color-main);
}

.offer-name {
    color: var(--color-highlight);
    font-weight: 500;
    font-size: 1em;
    text-transform:uppercase;
}

.offer-price {
    font-weight: 600;
    color: #414040;
    font-style: italic;
}

.offer-item:hover {
    animation: moveUpDownShort 0.8s ease-in-out infinite;
}

.hotItem:after {
    content: '';
    width: 112px;
    height: 112px;
    background: url(../Upload/Image/bg_hot.png);
    position: absolute;
    top: -10px;
    right: -12px;
}

#process-tab{
    display:flex;
    justify-content:center;

}

#process-tab .nav-item {
    outline: 2px solid var(--color-main) !important;
    font-size:1.125em;
}

#process-tab .nav-link {
    color: var(--color-main);
    background-color: #fff;
    padding: .25em 1.5em !important;
}
#process-tab .nav-item .active{
    font-weight: 500;
    background-color: #4abab9bf;
    color:#fff;
}

#process-tab  .nav-link{
    min-width:200px;
    display:flex;
    justify-content:center;
}

.des-offer{
   padding:1em 0;
}

.des-offer span {
    margin-bottom: 1em;
}

.des-offer i {
    color: var(--color-main);
    margin-right: .5em;
    transform:translateY(2px);
}

.dsig-offer .offer-item {
    border-left: 5px solid var(--color-main);
    border-right:unset;
}