/*summer campaign*/
.oct-campaign {
    position: fixed;
    bottom: 58px;
    left: 0;
    z-index: 1000;
    animation: bounce-in 2s ease;
    transition: all 0.3s ease;
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce-out {
    0% {
        transform: scale(1);

    }
    50% {
        transform: scale(.9);

    }
    70% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        transform: scale(.3);
    }
}

.oct-campaign {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 278px;
    height: 299px;
    position: fixed;
}

.oct-campaign picture,
.oct-campaign img {
    width: 100%;
    height: 100%;
}

.close-oct-campaign {
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 10002;
    cursor: pointer;
    /* top: 7px;*/
    /*right: 3px;*/
    left: auto;
    top: 13px;
    right: 14px;
}

.close-oct-campaign::after {
    content: 'X';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 17px;
    border: 1px solid #c5984d;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    padding-top: 3px;
    color: #c5984d !important;
    opacity: 0;
}

.oct-campaign a {
    color: #fff;
    border-radius: 30px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.oct-campaign a:hover {
    color: #fff;
}


.hide-oct-campaign {
    animation: bounce-out 2s ease forwards;
}

@media only screen and (max-width: 500px) {
    .oct-campaign {
        width: 215px;
        height: 231px;
    }
	.close-oct-campaign {
    width: 23px;
    height: 23px;
    top: 2px;
    right: 2px;
	}
}