/* Home table */
.casino-table-header {
    text-align: center;
    padding: 10px 0px;
    color: #777171;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    border-top: 2px solid #ddd;
}
.casino-row:nth-child(odd) {
    background-color: #f4f4f4;
}
.casino-row:nth-child(even) {
    background-color: var(--withe-bitcoinfy);
}
.casino-row:last-child {
    border-bottom: 2px solid #ddd;
}
.casino-logo img {
    width: 146px;
    height: 146px;
    border: 2px solid transparent;
    -webkit-transition: .15s ease-in-out;
    -moz-transition: .15s ease-in-out;
    -o-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
}
.casino-logo {
    margin: 30px auto;
    width: 150px;
}
.casino-logo a {
    position: relative;
    display: block;
}
.casino-logo .casino-logo:hover img {
    border: 2px solid #f9c228;
}
.casino-logo .table-counter {
    position: absolute;
    top: -15px;
    left: -15px;
    height: 30px;
    width: 30px;
    background: #f9cd33;
    border-radius: 50%;
    line-height: 30px;
    font-size: 16px;
    color: #393734;
    font-weight: 700;
    text-align: center;
    z-index: 9;
}
.key-features ul {
    margin: 0;
}
.key-features ul li {
    margin-bottom: 5px;
    font-size: 16px;
}
.key-features ul li:before {
    content: "";
    background-image: url('../assets/icons/correct.png');
    position: absolute;
    width: 20px;
    height: 20px;
    background-size: contain;
    left: 25px;
}
.key-features a, .key-features span {
    display: block;
    margin-top: 5px;
    margin-left: 40px;
    color: #34495e;
}
.key-features a:before, .key-features span:before {
    content: "";
    background-image: url('../assets/icons/read-review-icon.svg');
    position: absolute;
    width: 20px;
    height: 20px;
    background-size: contain;
    left: 28px;
    margin-top: 5px;
}
.bonus-wrap {
    display: block;
    width: 100%;
    padding: 5px;
    border: 5px dashed #f9ce48;
    line-height: 1.3;
    text-align: center;
}
.bonus-wrap p {
    pointer-events: none;
    font-size: 20px;
    color: #444;
    margin: 0;
    transition: all .3s ease;
    font-weight: 700;
}
.bonus-wrap:hover p {
    color: #f7c117;
}
.casino-btn {
    font-size: 20px;
    padding: 15px 25px;
    line-height: 20px;
    background: var(--yellow-bnt-bnitcoinfy);
    color: var(--link-hover-bitcoinfy);
    position: relative;
    transition: 600ms ease all;
    outline: none;
    font-weight: bold;
    display: block;
    box-shadow: 1px 2px 15px rgba(0,0,0,.2);
    border-radius: 4px;
    text-align: center;
}
.casino-btn:hover {
    background: #f2be07;
    box-shadow: none!important;
}
.casino-btn:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../assets/icons/click-icon.svg');
    margin-left: 8px;
}

/* Additional text */
.criteria-focuses p:first-child {
    text-align: center;
    margin: 0;
}
.criteria-focuses .wpb_text_column p{
    text-align: left !important;
}
.criteria-focuses .wpb_text_column {
    margin-bottom: 35px;
}

/* Red disclaimer */
.red-disclaimer {
    background: linear-gradient(45deg, #a0231f, #e83e33);
    color: var(--withe-bitcoinfy);
    padding-top: 35px;
    padding-bottom: 35px;
    font-size: 22px;
    position: relative;
    font-weight: 700;
}
.red-disclaimer h2 {
    margin: 0;
}
.red-disclaimer a {
    color: var(--withe-bitcoinfy);
}
.red-disclaimer .small-disclaimer {
    background: rgba(0, 0, 0, .1);
    padding: 16px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}
.red-disclaimer .small-disclaimer p {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    color: var(--withe-bitcoinfy);
}
.star-list {
    list-style: none;
    padding: 35px 0px 40px 40px;
    margin: 0;
}
.star-list li {
    font-size: 22px;
}
.star-list li:before {
    content: "\f005";
    color: #f9cd33;
    font-family: FontAwesome;
    padding-right: 10px;
 }

/* Snippet */
.snippet li {
    line-height: 30px;
}
.snippet h3 {
    font-weight: 700;
    font-size: 18px;
}

/* Home reviews */
.home-reviews img {
    height: auto;
    width: 100%;
}
.home-reviews ul {
    margin-top: 0px;
    margin-bottom: 35px;
}
.home-reviews h3 {
    margin-bottom: 10px;
}
.home-reviews h4 {
    font-size: 32px;
    line-height: 36px;
}
.home-reviews p {
    margin-top: 0px;
    margin-bottom: 30px;
}
.home-reviews p b {
    font-size: 24px;
}
.reviews-btn {
    background: #f9cd33;
    color: #34495e;
    border: none;
    position: relative;
    padding: 14px 30px;
    cursor: pointer;
    transition: 600ms ease all;
    outline: none;
    font-weight: bold;
    font-size: 16px !important;
    border-radius: 0;
    display: block;
}
.reviews-btn:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #f9cd33;
    transition: 300ms ease all;
}
.reviews-btn:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    background: #f9cd33;
    transition: 300ms ease all;
    right: initial;
    top: initial;
    left: 0;
    bottom: 0;
}
.reviews-btn:hover {
    background: transparent !important;
    color: #34495e !important;
}
.reviews-btn:hover:before {
    width: 100%;
    transition: 600ms ease all;
}
.reviews-btn:hover:after {
    width: 100%;
    transition: 600ms ease all;
}
.home-reviews-btn {
    /* flex-direction: column-reverse; */
}
.home-reviews-btn a {
    background: #f9cd33;
    color: #34495e;
    border: none;
    position: relative;
    padding: 14px 30px;
    cursor: pointer;
    transition: 600ms ease all;
    outline: none;
    font-weight: bold;
    font-size: 16px !important;
    border-radius: 0;
    display: block;
}
.home-reviews-btn a:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #f9cd33;
    transition: 300ms ease all;
}
.home-reviews-btn a:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    background: #f9cd33;
    transition: 300ms ease all;
    right: initial;
    top: initial;
    left: 0;
    bottom: 0;
}
.home-reviews-btn a:hover {
    background: transparent !important;
    color: #34495e !important;
}
.home-reviews-btn a:hover:before {
    width: 100%;
    transition: 600ms ease all;
}
.home-reviews-btn a:hover:after {
    width: 100%;
    transition: 600ms ease all;
}
.home-reviews a {
    color: #444;
}
.home-reviews hr {
    margin-bottom: 35px;
}
.home-reviews hr:last-child {
    display: none;
}

/* Side banner */
.side-banner {
    top: 120px;
    position: sticky;
}
.side-banner h5 {
    margin: 10px 0;
}
.side-banner img {
    width: 250px;
    text-align: center;
}
.side-banner .bonus-wrap {
    margin-top: 20px;
    margin-bottom: 5px;
}
.side-banner .bonus-wrap p {
    margin-bottom: 0px;
    font-size: 18px;
}
.side-banner .casino-btn {
    margin: 15px 80px;
}
.earnings-disclosure p {
    text-align: left !important;
    font-size: 13px;
    color: #6f6d6d;
    line-height: 25px;
}

/* Red number list */
.red-number {
    color: var(--withe-bitcoinfy);
    background-color: var(--hover-red-bitcointfy);
    border-radius: 50%;
    height: 26px;
    width: 26px;
    text-align: center;
    display: inline-block;
}

/* Red border banner */
.red-border-banner {
    border: 6px solid var(--hover-red-bitcointfy);
}
.jump-to-btn {
    cursor: pointer;
}
.post-btn {
    font-size: 20px;
    padding: 16px 25px;
    line-height: 20px;
    background: var(--yellow-bnt-bnitcoinfy);
    color: var(--link-hover-bitcoinfy);
    position: relative;
    transition: 600ms ease all;
    outline: none;
    font-weight: bold;
    display: inline-block;
    box-shadow: 1px 2px 15px rgba(0,0,0,.2);
    border-radius: 4px;
    text-align: center;
}
.post-btn:hover {
    background: #f2be07;
    box-shadow: none!important;
}

/*3 buttons on gambling page*/
.bitcoin-gabling-buttons .scroll-to-box {
    display: block;
    background:#99101B;
    padding: 15px 10px;
    box-shadow: 1px 2px 15px #00000033;
    transition: all .3s ease-out;
}
.bitcoin-gabling-buttons .scroll-to-box:hover {
    box-shadow: none;
}
.bitcoin-gabling-buttons .scroll-to-box-title {
    font-size: 19px;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
.bitcoin-gabling-buttons .scroll-to-box-title span {
    padding: 0px 5px;
    border-bottom: 2px solid #f2be07;
}
.bitcoin-gabling-buttons .scroll-to-box p {
    max-width: 230px;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: 10px;
}
.bitcoin-gabling-buttons .scroll-to-box .scroll-to-arrows {
    max-width: 230px;
    margin: 20px 10px 0 auto;
}
.bitcoin-gabling-buttons .scroll-to-box .scroll-to-arrows div{
    height: 3px;
    width: 50%;
    margin-bottom: 10px;
    background-color: #f2be07;
}
.bitcoin-gabling-buttons .scroll-to-box .scroll-to-arrows div.left{
  transform: rotate(10deg);
  margin-right: -1px;
}
.bitcoin-gabling-buttons .scroll-to-box .scroll-to-arrows div.right{
  transform: rotate(-10deg);
  margin-left: -1px;
}
.bitcoin-gabling-buttons .scroll-to-box span,
.bitcoin-gabling-buttons .scroll-to-box p {
    color: #fff;

}

/* 0 to MD */
@media only screen and (max-width: 768px) {
    .home-reviews p {
        margin-bottom: 20px;
    }
    /* Casino table */
    .bonus-wrap {
        padding: 0;
        text-align: left;
        border: none;
    }
    .casino-logo .table-counter {
        height: 20px;
        width: 20px;
        line-height: 20px;
        font-size: 11px;
        top: -8px;
        left: -8px;
    }
    .casino-row  .casino-btn {
        margin: 0px 0px 15px 0px;
        width: 100%;
    }
    .bonus-wrap p {
        margin-bottom: 0px !important;
    }
    .casino-logo {
        width: 100%;
    }
    .casino-logo img {
        width: 100%;
        height: auto;
    }
    .casino-row {
        margin: 15px -15px;
    }
    .casino-row:nth-child(even) {
        background-color: #f4f4f4;
    }
}