/*
 * Header
 */
 .html_header_top.html_header_sticky #header.header-package {
    position: relative;
}
.html_header_top.html_header_sticky.html_large #header.header-package #header_main .container {
    height: auto;
    line-height: auto;
}
.header-package #header_main {
    border: 0;
}
.header-package #header_main .inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0 15px;
}
.html_header_top.html_header_sticky.html_large #main.main-package {
    padding-top: 0;
}
.header-package .header-top-container {
    background-color: rgba(215, 23, 53, 1);
    min-height: 160px;
    display: flex;
}
.header-package .header-bottom-container {
    background-color: rgba(255, 255, 255, 1);
}
#main.main-package main {
    padding: 0;
}
.header-package .logo {
    position: relative;
    float: none;
    text-align: left;
}
.header-package .logo a {
    display: flex;
    align-items: center;
}
.header-package .title-wrapper {
    position: relative;
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.offer-page-title {
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    font-size: 20px;
    line-height: 32px;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.offer-page-title .text-bold {
    font-weight: 700;
}
.offer-page-title .text-regular {
    font-weight: 400;
}
.container_wrap {
    border-top-width: 0;
}
.header-package .title-wrapper .header-video {
    position: absolute;
    top: -45px;
    right: 0;
}
.header-bottom-container .inner-container {
    display: flex;
    justify-content: flex-end;
}
.header-bottom-container h1 {
    width: 80%;
    padding: 25px 0;
    border-bottom: 1px solid rgba(112, 112, 112, .26);
    margin-bottom: 0;
    color: rgba(215, 23, 53, 1);
    font-size: 24px;
    line-height: 35px;
}
@keyframes fade-in-down {
    0% { 
        opacity: 0;
        transform: translateY(-20px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}
.video {
    width: 389px;
    height: 219px;
    overflow: hidden;
}
.video-fixed .video {
    position: fixed;
    top: 30px;
    right: 30px;
    transform: translateY(100%);
    width: 300px;
    height: 169px;
    animation: fade-in-down .25s ease-in forwards;
}
.video-fixed iframe {
    width: 300px;
    height: 169px;
}
.header-video-poster-wrapper {
    position: absolute;
    height: 219px;
    top: 0;
    left: 0;
    opacity: 1;
    -webkit-transition: opacity 800ms, height 0s;
    -moz-transition: opacity 800ms, height 0s;
    transition: opacity 800ms, height 0s;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
}
.video-fixed .video .header-video-poster-wrapper {
    height: 169px;
}
.video-fixed .video .header-video-poster-wrapper .header-video-play {
    width: 50px;
    height: 50px;
}
.header-video-poster-wrapper .header-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    cursor: pointer;
}
.header-video-poster-wrapper .header-video-play #play-icon g,
.header-video-poster-wrapper .header-video-play #play-icon polygon {
    transition: fill .4s ease-in-out;
}
.header-video-poster-wrapper .header-video-play:hover #play-icon g {
    fill: rgba(215, 23, 53, 1);
}
.header-video-poster-wrapper .header-video-play:hover #play-icon polygon {
    fill: rgba(255, 255, 255, 1);
}
.videoWrapperActive .header-video-poster-wrapper {
    opacity: 0;
    height: 0;
    z-index: -1;
    -webkit-transition-delay: 0s, 800ms;
    -moz-transition-delay: 0s, 800ms;
    transition-delay: 0s, 800ms;
}
.close-button {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-radius: 50%; 
    background : rgba(0, 0, 0, 1);
    text-indent : -9999px;
    border: 0;
    opacity: 0;
    transition: opacity .25s ease, background-color .4s ease-in-out;
}
.close-button:before,
.close-button:after {
    content    : '';
    display: block;
    width      : 55%;
    height     : 2px;
    background-color : rgba(255, 255, 255, 1);
    position   : absolute;
    top        : 48%;
    left       : 22%;
    transform: rotate(-45deg);
}
.close-button:after {
      transform: rotate(45deg);
}
.video-fixed .close-button {
    position: fixed;
    top: 20px;
    right: 20px;
    opacity: 1;
    animation: fade-in-up .25s ease forwards;
    cursor: pointer;
}
.video-fixed .close-button:hover {
    background-color : rgba(215, 23, 53, 1);
}
@media (max-width: 1149px) {

    .header-package #header_main .inner-container {
        flex-direction: column;
    }
    .header-package .logo,
    .header-package .title-wrapper,
    .header-bottom-container h1 {
        width: 100%;
    }
    .header-package .title-wrapper {
        margin: 30px 0 15px;
    }
    .header-package .title-wrapper .header-video {
        top: -50px;
    }
}
@media (max-width: 944px) {
    .header-package .title-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .header-package .logo a {
        justify-content: center;
    }
    .header-package .title-wrapper .offer-page-title {
        text-align: center;
    }
    .header-package .title-wrapper .header-video {
        position: relative;
        top: 0;
        margin-top: 25px;
    }
    .header-bottom-container h1 {
        text-align: center;
    }
}
@media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .flex_column.offer-table-section {
        margin-top: 15px;
    }
}
@media (max-width: 457px) {
    .header-package .title-wrapper .header-video {
        width: 272px;
        height: 153px;
    }
    .header-package .title-wrapper .header-video .video,
    .header-package .title-wrapper .header-video .video iframe {
        width: 272px;
        height: 153px;
    }
    .header-video-poster-wrapper {
        position: absolute;
        height: 153px;
    }
    .header-video-poster-wrapper .header-video-play {
        width: 50px;
        height: 50px;
    }
}

/*
 * Desktop table - golden ball tr
 */
.goldenballs-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.goldenballs-wrapper img {
    margin-left: 5px;
    margin-right: 5px;
}
#top .main_color .offer-table.offer-table-content tr td {
    height: 60px;
}
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table-content tr:first-child td {
    border-width: 0;
    padding-bottom: 20px;
}
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table-content tr:first-child td:nth-child(2),
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table-content tr:first-child td:nth-child(3),
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table-content tr:first-child td:nth-child(4),
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table-content tr:first-child td:nth-child(5),
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(1) .pricing-table>li:first-child,
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(2) .pricing-table>li:first-child,
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(3) .pricing-table>li:first-child,
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(4) .pricing-table>li:first-child {
    background-color: #ffffff;
}
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table-content tr:first-child td:nth-child(1) {
    text-align: right;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(1) .pricing-table>li:first-child,
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(2) .pricing-table>li:first-child,
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(3) .pricing-table>li:first-child,
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(4) .pricing-table>li:first-child {
    border-bottom: 0;
    padding: 1em 0;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap .pricing-table>li:first-child {
    padding: 0 0 1em;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap .pricing-table>li:first-child:before {
    content: 'Z nami zarobisz:';
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

/*
 * Table
 */
.main_color table.offer-table {
    background: transparent;
}
body .column-top-margin.offer-table-section {
    margin-top: 25px;
}
#top .main_color .offer-table th {
    border: 0;
    padding: 43px 12px 12px;
    height: 215px;
    position: relative;
    letter-spacing: initial;
}
#top .main_color .offer-table.offer-table-content tr:nth-child(2) td {
    padding: 5px 12px;
    border: 0;
    height: auto;
}
#top .main_color .offer-table.offer-table-content tr:nth-child(2) td h2 {
    font-size: 24px;
	margin: 0;
    line-height: normal;
}
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table tr:nth-child(2) td:nth-child(2) {
    background-color: #cebcaa;
}
#top .main_color .offer-table td:nth-child(2) .offer-table-package-name,
#top .main_color .offer-table.offer-table-footer td:nth-child(2) .offer-table-price, 
#top .main_color .offer-table.offer-table-footer td:nth-child(2) .offer-table-price-desc {
    color: #5b4733;
}
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table tr:nth-child(2) td:nth-child(3) {
    background-color: #E7E6E6;
}
#top .main_color .offer-table td:nth-child(3) .offer-table-package-name,
#top .main_color .offer-table.offer-table-footer td:nth-child(3) .offer-table-price, 
#top .main_color .offer-table.offer-table-footer td:nth-child(3) .offer-table-price-desc {
    color: #707070;
}
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table tr:nth-child(2) td:nth-child(4) {
    background-color: #EAD8AC;
}
#top .main_color .offer-table td:nth-child(4) .offer-table-package-name,
#top .main_color .offer-table.offer-table-footer td:nth-child(4) .offer-table-price, 
#top .main_color .offer-table.offer-table-footer td:nth-child(4) .offer-table-price-desc {
    color: #C29C3E;
}
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table tr:nth-child(2) td:nth-child(5) {
    background-color: #000000;
}
#top .main_color .offer-table td:nth-child(5) .offer-table-package-name,
#top .main_color .offer-table.offer-table-footer td:nth-child(5) .offer-table-price, 
#top .main_color .offer-table.offer-table-footer td:nth-child(5) .offer-table-price-desc {
    color: #FFFFFF;
}
#top .main_color .offer-table.offer-table-footer td .offer-table-price,
#top .main_color .offer-table th .offer-table-price-from {
    text-transform: none;
    font-size: 28px;
    margin: 5px 0 0 0;
    font-weight: 600;
}
#top .main_color .offer-table.offer-table-footer td .offer-table-price-from {
    font-weight: 400;
}
#top .main_color .offer-table.offer-table-footer td .offer-table-price-desc {
    font-weight: 400;
    text-transform: none;
    margin: 0;
    line-height: initial;
	font-size: 12px;
}
#top .main_color .offer-table th>p {
    position: absolute;
    bottom: 12px;
    width: 100%;
    left: 0;
}
.main_color a.buy-offer-btn, #top .main_color .offer-form input[type="submit"]  {
    text-decoration: none;
    text-transform: uppercase;
    line-height: 21px;
    font-weight: 600;
    background-color: #D71735;
    color: #ffffff;
    font-size: 14px;
    padding: 15px 40px;
    transition: all .3s ease-in-out;
    cursor: pointer;
    display: block;
    width: 162px;
    margin: 0 auto;
}
.main_color a.buy-offer-btn:hover, #top .main_color .offer-form input[type="submit"]:hover {
	background-color: #000000;
}
#top .main_color .offer-form input[type="submit"]:disabled {
    cursor: not-allowed;
}

#top .main_color .avia-data-table.avia_pricing_minimal.offer-table td {
    border-width: 0 0 1px 0;
    border-color: #D2D2D2;
    color: #494949;
    font-size: 12px;
    line-height: initial;
    vertical-align: middle;
}
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table td b {
    color: #494949;
}
#top .main_color .offer-table td:nth-child(1) {
    text-align: left;
    background-color: #ffffff;
    padding: 10px 5px 10px 0;
}
#top .main_color .offer-table td:nth-child(2),
#top .main_color .offer-table td:nth-child(3),
#top .main_color .offer-table td:nth-child(4) {
    padding: 10px;
    position: relative;
}
#top .main_color .offer-table td:nth-child(2),
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table tr:last-of-type th:nth-child(2) {
    background-color: #F3EFEB;
}
#top .main_color .offer-table td:nth-child(3),
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table tr:last-of-type th:nth-child(3) {
    background-color: #F3F3F3;
}
#top .main_color .offer-table td:nth-child(4),
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table tr:last-of-type th:nth-child(4) {
    background-color: #F8F5ED;
}
.service-item {
    cursor: default;
}
.service-tooltip {
    position: relative;
}
.service-tooltip::after {
    content: attr(data-tooltip);
    width: 215px;
    height: auto;
    background-color: #DEDEDE;
    box-shadow: 0 3px 6px rgba(0,0,0,.15);
    position: absolute;
    top: -72px;
    left: 5px;
    line-height: initial;
    opacity: 0;
    color: #000;
    transition: visibility 0.5s ease, opacity 0.5s ease;
    font-size: 10px;
    font-family: 'Poppins';
    font-weight: 400;
    padding: 10px;
    visibility: hidden;
	z-index: 2;
}
.service-item:hover .service-tooltip::after,
.service-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}
.fas.circle-green,
.fas.circle-red {
    font-size: 16px;
    position: relative;
}
.fas.circle-green {
    color: #00D972;
}
.fas.circle-red {
    color: #D71735;
}
#top .main_color .avia-data-table.avia_pricing_minimal.offer-table tr:nth-child(11) td .consult-desc {
	padding-top: 2px;
}
#top .main_color .offer-table.offer-table-footer tr td {
    padding: 12px;
    height: 175px;
    border-bottom: 0;
    position: relative;
}
#top .main_color .offer-table.offer-table-footer tr td .offer-table-package-cell {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
#top .main_color .offer-table.offer-table-footer tr td>p{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
#top .main_color .offer-table th>p.google-ads-campagin {
    position: absolute;
    top: 0;
    bottom: unset;
    left: 0;
    width: 100%;
    margin: 0;
    background-color: #E7E6E6;
    text-transform: none;
    font-size: 12px;
    line-height: initial;
    padding: 10px;
}
#top .main_color .offer-table tr:last-of-type th:nth-child(5):before {
    display: none;
}
#top .main_color .offer-table td:nth-child(2),
#top .main_color .offer-table td:nth-child(3),
#top .main_color .offer-table td:nth-child(4) {
    padding: 10px;
    position: relative;
}
#top .main_color .offer-table td:nth-child(2),
#top .main_color .offer-table.offer-table-footer tr td:nth-child(2) {
    background-color: #F3EFEB;
}
#top .main_color .offer-table td:nth-child(3),
#top .main_color .offer-table.offer-table-footer tr td:nth-child(3) {
    background-color: #F3F3F3;
}
#top .main_color .offer-table td:nth-child(4),
#top .main_color .offer-table.offer-table-footer tr td:nth-child(4) {
    background-color: #F8F5ED;
}
#top .main_color .offer-table.offer-table-footer tr td:nth-child(5) {
    background-color: #000000;
}
#top .main_color .offer-table th:nth-child(5):before {
    content: unset;
}
.avia-table.offer-table {
    margin: 0;
}
.offer-table-desktop .avia-data-table-wrap.avia_responsive_table:nth-child(2) {
    height: 362px;
    overflow: hidden;
    -moz-transition: height 1s ease-out;
    -ms-transition: height 1s ease-out;
    -o-transition: height 1s ease-out;
    -webkit-transition: height 1s ease-out;
    transition: height 1s ease-out;
}
.avia-table.offer-table.offer-table-more {
    display: none;
}
.avia-table.offer-table.offer-table-footer {
    margin-top: -23px;
}
.offer-table-desktop .avia_codeblock.package-read-more {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 22px;
    border-bottom: 3px solid #df1f3b;
    bottom: 195px;
    transition: border-color .4s;
    cursor: pointer;
}
.offer-table-desktop .avia_codeblock.package-read-more .read-more {
    display: flex;
    justify-content: center;
    width: 80%;
}
.offer-table-desktop .avia_codeblock.package-read-more .read-more:after {
    content: 'rozwiń';
    background-color: #df1f3b;
    padding: 0 10px 0 10px;
    border-top-left-radius: .1875rem;
    border-top-right-radius: .1875rem;
    position: absolute;
    width: 43px;
    text-align: center;
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    top: -1px;
    z-index: 11;
    transition: background-color .4s;
}
.offer-table-desktop .avia_codeblock.package-read-more:hover {
    border-bottom: 3px solid #000000;
}
.offer-table-desktop .avia_codeblock.package-read-more:hover .read-more:after {
    background-color: #000000;
}
.offer-table-desktop.expanded .avia-table.offer-table.offer-table-footer {
    margin-top: -23px;
}
.offer-table-desktop.expanded .avia_codeblock.package-read-more .read-more:after {
    content: 'zwiń';
}

.offer-table-desktop .avia_textblock.package-read-more {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 22px;
    border-bottom: 3px solid #df1f3b;
    bottom: 195px;
    transition: border-color .4s;
    cursor: pointer;
}
.offer-table-desktop .avia_textblock.package-read-more .read-more {
    display: flex;
    justify-content: center;
    width: 80%;
}
.offer-table-desktop .avia_textblock.package-read-more .read-more:after {
    content: 'rozwiń';
    background-color: #df1f3b;
    padding: 0 10px 0 10px;
    border-top-left-radius: .1875rem;
    border-top-right-radius: .1875rem;
    position: absolute;
    width: 43px;
    text-align: center;
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    top: -1px;
    z-index: 11;
    transition: background-color .4s;
}
.offer-table-desktop .avia_textblock.package-read-more:hover {
    border-bottom: 3px solid #000000;
}
.offer-table-desktop .avia_textblock.package-read-more:hover .read-more:after {
    background-color: #000000;
}
.offer-table-desktop.expanded .avia-table.offer-table.offer-table-footer {
    margin-top: -23px;
}
.offer-table-desktop.expanded .avia_textblock.package-read-more .read-more:after {
    content: 'zwiń';
}

@media only screen and (max-width: 1149px) {
    .offer-table-desktop {
        display: none;
    }
    .avia-table.offer-table-mobile {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .offer-table-mobile .pricing-table-wrap {
        width: 100%;
    }
    #top .avia_pricing_minimal.offer-table-mobile .pricing-table>li.avia-heading-row {
        padding: 20px 12px;
    }
}

/*
 * Mobile table 
 */
.avia-table.offer-table-mobile {
    display: none;
}
.offer-table-mobile .pricing-table-wrap .pricing-table {
    box-shadow: unset;
	margin: 0 0 40px 0;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table>li {
    border-bottom: 1px solid #D2D2D2;
	padding-left: 40px;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(1) .pricing-table>li.avia-heading-row,
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(1) h2 {
    color: #5b4733;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(1) .pricing-table>li.avia-heading-row:nth-child(1) {
    background-color: #cebcaa;
}
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(1) .pricing-table>li {
    background-color: #F3EFEB;
}
.main_color .offer-table-mobile .pricing-table-wrap .pricing-table li.avia-heading-row:nth-child(1) {
    border: 0;
    padding: 43px 12px 12px;
    height: 215px;
    position: relative;
    letter-spacing: initial;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(2) .pricing-table>li.avia-heading-row,
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(2) h2 {
    color: #707070;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(2) .pricing-table>li.avia-heading-row:nth-child(1) {
    background-color: #E7E6E6;
}
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(2) .pricing-table>li {
    background-color: #F3F3F3;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(3) .pricing-table>li.avia-heading-row,
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(3) h2 {
    color: #C29C3E;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(3) .pricing-table>li.avia-heading-row:nth-child(1) {
    background-color: #EAD8AC;
}
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(3) .pricing-table>li {
    background-color: #F8F5ED;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(4) .pricing-table>li.avia-heading-row,
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(4) h2 {
    color: #FFFFFF;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(4) .pricing-table>li.avia-heading-row:nth-child(1) {
    background-color: #000000;
}
.main_color .offer-table-mobile .pricing-table-wrap:nth-child(4) .pricing-table>li {
    background-color: ;
}
.main_color .offer-table-mobile .pricing-table-wrap h2 {
    font-size: 24px;
	margin: 0;
}
.main_color .offer-table-mobile .pricing-table-wrap .pricing-table>li:nth-child(even),
.main_color .offer-table-mobile .pricing-table-wrap .pricing-table>li:nth-child(odd) {
    color: #494949;
    font-size: 12px;
    text-align: left;
    line-height: initial;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table>li.avia-heading-row {
    border-bottom: 0;
    line-height: unset;
    text-align: center;
	padding-left: 12px;
}
.main_color .offer-table-mobile .offer-table-price,
.main_color .offer-table-mobile .offer-table-price-from {
    text-transform: none;
    font-size: 28px;
    margin: 5px 0 0 0;
    line-height: 24px;
}
.main_color .offer-table-mobile .offer-table-price {
    font-weight: 600;
}
.main_color .offer-table-mobile .offer-table-price-from {
    font-weight: 400;
}
.main_color .offer-table-mobile .offer-table-price-desc {
    font-weight: 400;
    font-size: 12px;
    text-transform: none;
    margin: 5px 0;
    line-height: initial;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table>li.avia-heading-row .first-table-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
#top .main_color .offer-table-mobile li.avia-heading-row:last-of-type {
	padding: 20px 12px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#top .avia_pricing_minimal.offer-table-mobile .pricing-table-wrap:nth-child(2) .pricing-table>li.avia-heading-row:last-of-type {
	padding: 20px 12px 12px;
    height: 150px;
}
#top .main_color .offer-table-mobile li.avia-heading-row>p.google-ads-campagin {
    position: absolute;
    top: 0;
    bottom: unset;
    left: 0;
    width: 100%;
    margin: 0;
    background-color: #E7E6E6;
    text-transform: none;
    font-size: 12px;
    line-height: initial;
    padding: 10px;
    font-weight: 700;
    color: #494949;
}
.offer-table-mobile .fas.circle-green,
.offer-table-mobile .fas.circle-red {
    left: 10px;
    position: absolute;
}
@media only screen and (max-width: 1149px) {
    .offer-table-desktop {
        display: none;
    }
    .avia-table.offer-table-mobile {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .offer-table-mobile .pricing-table-wrap {
        width: 100%;
    }
    #top .avia_pricing_minimal.offer-table-mobile .pricing-table>li.avia-heading-row {
        padding: 20px 12px;
    }
}

/*
 * Promo box
 */
.main_color .promo-box {
    width: 100%;
    border: 1px solid #D71736;
    box-shadow: 0 3px 6px rgba(0,0,0,.15);
    display: flex;
}
.promo-title {
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    width: 320px;
    padding: 45px 27px;
    line-height: initial;
}
.promo-title .red-text {
    font-weight: bold;
    color: #D71735;
}
.promo-content {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-content: space-between;
    text-align: center;
}
.promo-content-row-top, .promo-content-row-bottom {
    display: flex;
    justify-content: space-between;
    height: 50%;;
}
.main_color .promo-content-row-top {
      border-bottom: 1px solid #EDEDED;
}
.promo-content-cell {
    margin: 0;
    padding: 0;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: initial;
}
.main_color .promo-content-cell.grey-cell {
    color: #707070;
}
.main_color .promo-content-cell.black-cell {
    color: #000000;
    font-weight: bold;
}
.main_color .promo-content-cell.red-cell {
    color: #D71735;
    font-weight: bold;
    font-size: 20px;
    line-height: initial;
}
.promo-content-row-top span:nth-child(2),
.promo-content-row-bottom span:nth-child(2),
.promo-content-row-top span:nth-child(3),
.promo-content-row-bottom span:nth-child(3) {
    border-right: 1px solid #EDEDED;
}

/*
* Contact
*/
.avia-section.offer-contact-section .content {
    padding-top: 0;
}
.avia-section.offer-contact-section .template-page .entry-content-wrapper {
    display: flex;
    align-items: center;
}
.offer-contact-details {
	font-size: 18px;
	line-height: 27px;
	text-align: left;
	color: #000000;
}
.offer-contact-name {
	color: #D71735;
	font-weight: 600;
}
div .av_one_half.offer-contact-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main_color  div.wpcf7-mail-sent-ok {
    border: 2px solid #398f14;
}

/*
* Form
*/
.offer-form-column {
    background-color: #F8F8F8;
    padding: 50px 60px 12px;
}
.main_color .offer-form-top-content p {
    font-size: 20px;
    line-height: 30px;
}
.offer-form {
    max-width: 400px;
}
hr.offer-form-separator {
    margin: -5px 0 15px 0;
}
#top .main_color .offer-form label {
    padding: 0;
}
#top .main_color .offer-form p {
    margin: 0;
}
#top .main_color .offer-form input[type=text],
#top .main_color .offer-form input[type=email],
#top .main_color .offer-form input[type=tel],
#top .main_color .offer-form input[type=textarea] {
    height: 40px;
    padding-left: 10px;
    font-size: 14px;
}
#top label.package-service-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#top label.package-service-label span {
    font-size: 14px;
    font-weight: bold;
    padding: 0;

}
#top .main_color .offer-form .select2 {
    width: 255px;
}
#top .main_color .offer-form .select2:nth-child(2) {
    width: 100%;
}
select {
    user-select: none;
    -webkit-user-select: none;
}

#top .main_color .offer-form .select2:focus {
    outline: none;
}
#top .main_color .offer-form .select2-container--default .select2-selection--single {
    font-family: Poppins;
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    height: 40px;
    padding-left: 34px;
    border-radius: 0;
    position: relative;
    outline: none;
}
#top .main_color .offer-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    font-weight: normal;
    padding-left: 0;
}
#top .main_color .offer-form .select2-container--default .select2-selection--single.bronze {
    background-color: #CEBCAA;
    border: 1px solid #CEBCAA;
}
#top .main_color .offer-form .select2-container--default .select2-selection--single.silver {
    background-color: #E7E6E6;
    border: 1px solid #E7E6E6;
}
#top .main_color .offer-form .select2-container--default .select2-selection--single.gold {
    background-color: #EAD8AC;
    border: 1px solid #EAD8AC;
}
#top .main_color .offer-form .select2-container--default .select2-selection--single.diamond {
    background-color: #000;
    border: #000;
}
#top .main_color .offer-form .select2-container--default .select2-selection--single.bronze .select2-selection__rendered span,
#top .main_color .offer-form .select2-container--default .select2-selection--single.silver .select2-selection__rendered span,
#top .main_color .offer-form .select2-container--default .select2-selection--single.gold .select2-selection__rendered span,
#top .main_color .offer-form .select2-container--default .select2-selection--single.diamond .select2-selection__rendered span  {
    font-weight: normal;
}
#top .main_color .offer-form .select2-container--default .select2-selection--single .select2-selection__rendered span.package-select-bold {
    font-weight: bold;
}

#top .main_color .offer-form .select2-container--default .select2-selection--single.bronze .select2-selection__rendered span,
#top .main_color .offer-form .select2-container--default .select2-selection--single.bronze::before,
#top .main_color .offer-form .select2-container--default.select2-container--open .select2-selection--single.bronze::before {
    color: #5B4733;
}
#top .main_color .offer-form .select2-container--default .select2-selection--single.silver .select2-selection__rendered span,
#top .main_color .offer-form .select2-container--default .select2-selection--single.silver::before,
#top .main_color .offer-form .select2-container--default.select2-container--open .select2-selection--single.silver::before  {
    color: #707070;
}
#top .main_color .offer-form .select2-container--default .select2-selection--single.gold .select2-selection__rendered span,
#top .main_color .offer-form .select2-container--default .select2-selection--single.gold::before,
#top .main_color .offer-form .select2-container--default.select2-container--open .select2-selection--single.gold::before  {
    color: #C29C3E;
}
#top .main_color .offer-form .select2-container--default .select2-selection--single.diamond .select2-selection__rendered span,
#top .main_color .offer-form .select2-container--default .select2-selection--single.diamond::before,
#top .main_color .offer-form .select2-container--default.select2-container--open .select2-selection--single.diamond::before  {
    color: #FFFFFF;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #D71735 !important;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(221,221,221,0.2);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}
.main_color .select-image {
    width: 12px;
    height: 7px;
    position: absolute;
    top: 18px;
    left: 10px;
}
#top .main_color .offer-form .package-service-label .select2-container--default .select2-selection--single::before,
#top .main_color .offer-form .promotion-label .select2-container--default .select2-selection--single::before {
    content: "\e877";
    font-size: 24px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'entypo-fontello';
}
#top .main_color .offer-form .select2-container--default.select2-container--open .select2-selection--single::before,
#top .main_color .offer-form .promotion-label .select2-container--default.select2-container--open .select2-selection--single::before {
    content: "\e87a";
}

#package-select.select2-hidden-accessible {
    visibility: hidden;
}

#top .main_color .offer-form .wpcf7-acceptance label {
    display: flex;
}
#top .main_color .offer-form .wpcf7-acceptance label span.wpcf7-list-item-label {
    font-size: 10px;
    color: #AEAEAE;
    line-height: 18px;
    margin-left: 10px;
}
#top .main_color .offer-form .wpcf7-acceptance label span.wpcf7-list-item-label a {
    color: #AEAEAE;
}
#top .main_color .offer-form .wpcf7-acceptance label span.wpcf7-list-item-label a:hover {
    text-decoration: none;
    color: #D71735;
}
#top .main_color .offer-form input[type="submit"] {
    margin-top: 15px;
}


@media only screen and (max-width: 1169px) {
    #top label.package-service-label {
        flex-direction: column;
        align-items: flex-start;
    }
    #top .main_color .offer-form .select2 {
        width: 100%;
    }
}
@media only screen and (max-width: 1023px) {
    .offer-table {
        display: none;
    }
    .avia-table.offer-table-mobile {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .offer-table-mobile .pricing-table-wrap {
        width: 100%;
    }
}
@media only screen and (max-width: 959px) {
    .promo-title {
        font-size: 18px;
        width: 300px;
    }
    .main_color .promo-content-cell {
        font-size: 13px;
    }
    .main_color .promo-content-cell.red-cell {
        font-size: 16px;
    }
}
@media only screen and (max-width: 869px) {
    .avia-section.offer-contact-section .content {
        padding-top: 10px;
    }
    .av_one_half.offer-form-column {
        width: 100%;
    }
    .avia-section.offer-contact-section .template-page .entry-content-wrapper {
        flex-direction: column;
    }
}
@media only screen and (max-width: 795px)  {
    .promo-title {
        font-size: 16px;
        width: 300px;
    }
    .main_color .promo-content-cell {
        font-size: 12px;
    }
    .main_color .promo-content-cell.red-cell {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .offer-table-mobile .pricing-table-wrap:nth-child(3) .pricing-table {
        margin: 0 0 20px 0;
    }
    .promo-box {
        flex-direction: column;
    }
    .promo-title {
        width: 100%;
        text-align: center;
        padding: 25px 15px;
        display: flex;
        flex-direction: column;
        font-size: 16px;
    }
    .promo-content {
        flex-direction: row;
        width: 100%;
    }
    .promo-content-row-top, .promo-content-row-bottom {
        flex-direction: column;
        width: 50%;
        height: auto;
    }
    .promo-content-cell {
        width: 100%;
        padding: 12px 0;
    }
    .main_color .promo-content-cell {
        font-size: 14px;
    }
    .main_color .promo-content-cell.grey-cell {
        font-size: 11px;
    }
    .main_color .promo-content-cell.red-cell {
        font-size: 14px;
    }
    .main_color .promo-content-row-top {
        border-bottom: 0;
        border-right: 1px solid #EDEDED;
    }
    .promo-content-row-top span:nth-child(2),
    .promo-content-row-bottom span:nth-child(2),
    .promo-content-row-top span:nth-child(3),
    .promo-content-row-bottom span:nth-child(3) {
        border-right: 0;
        border-bottom: 1px solid #EDEDED;
    }
    .main_color .promo-content-cell.grey-cell {
        border-top: 1px solid #EDEDED;
        border-bottom: 1px solid #EDEDED;
    }
}
@media only screen and (max-width: 584px) {
    /* #top label.package-service-label {
        flex-direction: column;
        align-items: flex-start;
    } */
    #top .main_color .offer-form .select2 {
        width: 100%;
    }
}
@media only screen and (max-width: 480px) {
    .offer-form-column {
        padding: 30px 20px 12px;
    }
}
.offer-table-price-old {
font-size: 18px !important;
    position: relative;
    top: -10px !important;
    left: -5px;
}
.offer-table-price-old:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #d71735;
    transform: rotate(-26.5deg);
    left: 0;
    top: 10px;
}
.offer-table-price-new{
    text-transform: none;
    font-size: 28px;
    margin: 5px 0 0 0;
    font-weight: 600;
    color: #d71735;
    position: relative;
}
.how-it-works-box-txt{
    margin: 0 !important;
    padding:0
}
.how-it-works-box section {
    border: 1px solid #c1c1c1;
    padding: 10px 30px;
    margin-bottom: 30px;
}
.how-it-works-box div{
    
}
.seogroup-awards {
    border: 3px solid #d71735 !important
}
#top .seogroup-awards .no_margin.av_one_third{
    margin: 70px 4% 0px 4%;
    width: 24%;
}
#top .avia-smallarrow-slider.seogroup-awards .avia-slideshow-arrows{
    width: 100%;
    
}
.seogroup-awards .prev-slide:before{
        color: #953747;
    background-color: transparent;
    font-size: 20px;
    font-weight: bold;
}
#top .avia-smallarrow-slider.seogroup-awards .avia-slideshow-arrows a.next-slide{
    right: -40px;
}
#top .avia-smallarrow-slider.seogroup-awards .avia-slideshow-arrows a.prev-slide{
    left: -40px;
}
#top .seogroup-awards .avia-smallarrow-slider-heading {
    width: 100%;
    position: absolute;
    height: 100%;
    display: grid;
}
.seogroup-awards .next-slide:before{
        color: #953747;
    background-color: transparent;
    font-size: 20px;
    font-weight: bold;
}
.seogroup-awards .av-partner-fake-img{
    box-shadow:none
}
.page-template-template-package .header-bottom-container h1{
    width:100%
}
/* * */
#top #wrap_all .all_colors h1{
    font-size: 28px;
}
#top .avia-logo-element-container .slide-entry {
    padding: 0;
}
.new_newsletter_box .gform_wrapper .gform_footer{
    width: 30%;
    margin: 0;
}
.new_newsletter_box .gform_wrapper .gform_body{
    width: 70%;
}
#top .new_newsletter_box .gform_wrapper input{
    padding: 20px 50px;
    width: 100%;
}
.new_newsletter_box .gform_wrapper{
        margin-bottom: 0;
}
#top .new_newsletter_box form.form--email{
    margin-bottom: 0;
}
body .container_wrap .avia-builder-el-last.new_newsletter_box{
    margin-bottom:30px
}
.seogroup-awards .avia-content-slider-inner>div:nth-child(2){
    background-color:#d61937
}