@font-face {
    font-family: 'Bomber Escort Condensed';
    src: url('../font/BomberEscortCondensed.woff2') format('woff2'), url('../font/BomberEscortCondensed.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #ffffff;
    --gold: #eeff00;
    --gold-bg: #72d2f0;
    --gold-bg-2: #d1f4fd;
    --dark-gold: #2db3f1;
    --btn-fb-color: #fff;
    --btn-fb-bg: #3b5998;
    --btn-fb-border: var(--btn-fb-bg);
    --btn-tw-color: #fff;
    --btn-tw-bg: #1DA1F2;
    --btn-tw-boder: var(--btn-tw-bg);
    --btn-ig-color: #fff;
    --btn-ig-bg: radial-gradient(32% 106%, circle cover, rgb(255, 225, 125) 0%, rgb(255, 205, 105) 10%, rgb(250, 145, 55) 28%, rgb(235, 65, 65) 42%, transparent 82%), -o-linear-gradient(-45deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    --btn-ig-boder: var(rgb(195, 60, 190));
}

#user-predicts-body {
    overflow-x: auto;
}

.btn-fb {
    background-color: var(--btn-fb-bg);
    border: 1px solid var(--btn-fb-border);
    color: var(--btn-fb-color);
}

.btn-tw {
    background-color: var(--btn-tw-bg);
    border: 1px solid var(--btn-tw-border);
    color: var(--btn-tw-color);
}

.btn-ig {
    border: 1px solid var(--btn-ig-border);
    color: var(--btn-ig-color);
    background: -webkit-radial-gradient(32% 106%, circle cover, rgb(255, 225, 125) 0%, rgb(255, 205, 105) 10%, rgb(250, 145, 55) 28%, rgb(235, 65, 65) 42%, transparent 82%), -webkit-linear-gradient(-45deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    background: -moz-radial-gradient(32% 106%, circle cover, rgb(255, 225, 125) 0%, rgb(255, 205, 105) 10%, rgb(250, 145, 55) 28%, rgb(235, 65, 65) 42%, transparent 82%), -moz-linear-gradient(-45deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    background: -ms-radial-gradient(32% 106%, circle cover, rgb(255, 225, 125) 0%, rgb(255, 205, 105) 10%, rgb(250, 145, 55) 28%, rgb(235, 65, 65) 42%, transparent 82%), -ms-linear-gradient(-45deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    background: -o-radial-gradient(32% 106%, circle cover, rgb(255, 225, 125) 0%, rgb(255, 205, 105) 10%, rgb(250, 145, 55) 28%, rgb(235, 65, 65) 42%, transparent 82%), -o-linear-gradient(-45deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    background: radial-gradient(circle farthest-corner at 32% 106%, rgb(255, 225, 125) 0%, rgb(255, 205, 105) 10%, rgb(250, 145, 55) 28%, rgb(235, 65, 65) 42%, transparent 82%), linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    width: 40px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .25rem !important;
}

body>#top-bar {
    position: -webkit-sticky;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9;
    transition: 0.5s;
}

div#top-bar.fixed {
    background: #1b2638;
}

.prize-img {
    cursor: pointer;
}

body {
    font-family: Open Sans, sans-serif;
}

#main-con {
    width: 100%;
    height: 100%;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    /* background-image: url("../assets/bg.jpg"); */
    overflow: hidden;
    background-color: #091426;
}

.match-card {
    position: relative;
    width: 375px;
    height: 200px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 0 2px var(--gold-bg), inset 0 0 2px var(--gold-bg), 0 0 3px var(--dark-gold), inset 0 0 3px var(--dark-gold), 0 0 4px var(--dark-gold), inset 0 0 4px var(--dark-gold);
}

.card-predict-shadow {
    border-radius: 10px;
    box-shadow: 0 0 10px var(--gold-bg), inset 0 0 10px var(--gold-bg), 0 0 15px var(--gold), inset 0 0 15px var(--gold), 0 0 20px var(--gold), inset 0 0 20px var(--gold);
    margin: 20px 10px;
}

.match-card-body {
    background-color: #e5e5f7;
    opacity: 0.8;
    background-image: repeating-radial-gradient( circle at 0 0, transparent 0, #e5e5f7 4px), repeating-linear-gradient( #444cf755, var(--gold-bg));
}

.match-card-header {
    width: 100%;
    height: 30px;
    background: var(--dark-gold);
    padding: 0 10px;
    border-radius: 10px 10px 0 0;
}

.v {
    width: 80px;
    height: 120px;
}

.right,
.left {
    width: 200px;
    height: 120px;
}

.team-area {
    width: 120px;
    height: 100%;
}

.team-logo {
    max-width: 80px;
    height: 80px;
}

.input-area {
    width: 60px;
    height: 100%;
}

.right-score,
.left-score {
    width: 40px;
    text-align: center;
    font-size: 18px;
    margin: 10px 0;
    border: none;
}

.match-card-footer {
    padding: 0 10px;
    background: var(--dark-gold);
    height: 50px;
    border-radius: 0 0 10px 10px;
}

#r-up-btn,
#l-up-btn,
#r-dw-btn,
#l-dw-btn {
    background-color: transparent;
}

#matches-con {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0px
}

#button-area {
    width: 100%;
    display: flex;
    justify-content: end;
}

#matches {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#savePredicts {
    margin-right: 10px;
    margin-bottom: 10px;
}

#predict-history-table {
    max-height: calc(100% - 70px);
    overflow: auto;
}

.trapezoid {
    width: 135px;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    position: absolute;
    top: 23px;
    right: -30px;
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    color: #fff;
}

.trapezoid-bg-yellow {
    border-bottom: 30px solid #ffc107!important;
}

.trapezoid-bg-green {
    border-bottom: 30px solid #28a745!important;
}

.trapezoid-bg-red {
    border-bottom: 30px solid #be4823!important;
}

#prize-cards-con {
    width: calc(100% - 20px);
    margin: 30px 0px 30px 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#prize-cards-con>img {
    padding: 10px;
    width: 33%
}

#left-side {
    width: 50%;
}

#top-bar nav.navbar ul.navbar-nav li {
    margin: 0 19px;
}

#top-bar nav.navbar ul.navbar-nav li a {
    color: #fff;
    font-family: Open Sans, sans-serif;
    font-size: 18px;
    letter-spacing: 0.6px;
}

#top-bar.fixed nav.navbar ul.navbar-nav li a {
    /*color: #000;*/
}

#top-bar nav.navbar ul.navbar-nav li a:hover {
    color: #d63747;
}

#top-bar.fixed nav.navbar ul.navbar-nav li a:hover {
    color: #d63747;
}

#top-bar nav.navbar a.navbar-brand img {
    width: 140px;
    transition: 0.5s;
}

#top-bar.fixed nav.navbar a.navbar-brand img {
    width: 100px;
}

.matches-banner {
    background-image: url(../assets/banner-bg-blue.jpg);
    padding: 280px 0 160px;
    background-size: contain;
    position: relative;
}

.matches-banner:before {
    content: "";
    height: 100%;
    width: 100%;
}

#top-bar nav.navbar .logout {
    background: #d63747;
    color: #fff;
    border: none;
    font-family: Open Sans, sans-serif;
    padding: 7px 20px 7px;
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
}

#top-bar nav.navbar .logout span {
    position: relative;
}

#top-bar nav.navbar .logout:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: absolute;
    left: -100%;
    top: 0;
    transition: 0.5s;
}

#top-bar nav.navbar .logout:hover:before {
    left: 0;
}

#top-bar nav.navbar .logout:hover {
    color: #d63747;
}

#top-bar nav.navbar .login {
    background: #74c687;
    color: #fff;
    border: none;
    font-family: Open Sans, sans-serif;
    padding: 7px 20px 7px;
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
}

#top-bar nav.navbar .login span {
    position: relative;
}

#top-bar nav.navbar .login:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #d63747;
    position: absolute;
    left: -100%;
    top: 0;
    transition: 0.5s;
}

#top-bar nav.navbar .login:hover:before {
    left: 0;
}

.matches-banner h1 {
    font-family: Open Sans, sans-serif;
    font-size: 75px;
}

.matches-banner h1 label {
    position: relative;
    color: transparent;
}

.matches-banner h1 label:before {
    content: attr(data-text);
    position: absolute;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    color: #fff;
    animation: effect 4s linear;
}

@keyframes effect {
    0% {
        max-width: 0;
    }
}

.matches-banner h1 span {
    display: block;
    font-size: 20px;
    letter-spacing: 1px;
    color: #d63747;
}

.matches-banner a.btn {
    background: #d63747;
    font-family: Open Sans, sans-serif;
    border-radius: 0;
    font-size: 21px;
    padding: 10px 29px 8px;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.matches-container .card-predict-shadow .match-card .match-card-body input {
    margin: 4px 0;
}

.matches-banner a.btn span {
    position: relative;
}

.matches-banner a.btn:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    left: -100%;
    top: 0;
    transition: 0.5s;
}

.matches-banner a.btn:hover:before {
    left: 0;
}

.matches-list {
    background-color: #f1f1f1f1;
    padding: 50px 0 50px;
    position: relative;
    /*box-shadow: 0px 60px 60px #111b2a, 0px -60px 60px #111b2a;*/
}

.matches-list:before {
    content: "";
    /*background-image: url(../assets/pattern-logo.png);*/
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
}

#top-bar nav.navbar {
    padding: 15px 0;
    transition: 0.5s;
}

#top-bar.fixed nav.navbar {
    padding: 5px 0;
}

.matches-container {
    background-image: url(../assets/pattern.png);
}

.matches-container .matches-list h2 {
    color: #000;
    font-family: Open Sans, sans-serif;
    text-align: center;
    font-size: 60px;
    letter-spacing: 0.3px;
    position: relative;
    margin: 0 0 40px;
}

.matches-container .matches-list h2:before {
    content: "";
    width: 50px;
    height: 4px;
    position: absolute;
    background: #d63747;
    left: 50%;
    transform: translate(-50%, 0);
    top: 68px;
}

.note-text {
    font-size: 13px;
    padding: 0;
    color: #000;
    margin: 20px 0 0;
}

.prizes-cont h2 {
    color: #fff;
    font-family: Open Sans, sans-serif;
    text-align: center;
    font-size: 60px;
    letter-spacing: 0.3px;
    position: relative;
    margin: 0 0 40px;
}

.prizes-cont {
    padding: 90px 0 50px;
}

.prizes-cont h2:before {
    content: "";
    width: 50px;
    height: 4px;
    position: absolute;
    background: #d63747;
    left: 50%;
    transform: translate(-50%, 0);
    top: 68px;
}

.prizes-cont #prize-cards-con {
    width: auto;
    margin: 0 auto;
    padding: 0 20px 0 0;
}

.prizes-cont #prize-cards-con img {
    padding: 10px;
    width: 250px;
    display: block;
    transition: none;
    -webkit-animation: AnimatedMintCard_holoCard__Oh3L_ 12s ease 0s 1;
    animation: AnimatedMintCard_holoCard__Oh3L_ 12s ease 0s 1;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: forward;
    animation-direction: forward;
}

@-webkit-keyframes AnimatedMintCard_holoCard__Oh3L_ {
    0%,
    to {
        transform: rotate(0deg) rotateX(0deg) rotateY(0deg)
    }
    5%,
    8% {
        transform: rotate(0deg) rotateX(6deg) rotateY(-20deg)
    }
    13%,
    16% {
        transform: rotate(0deg) rotateX(-9deg) rotateY(32deg)
    }
    35%,
    38% {
        transform: rotate(3deg) rotateX(12deg) rotateY(20deg)
    }
    55% {
        transform: rotate(-3deg) rotateX(-12deg) rotateY(-27deg)
    }
}

.prizes-discription {
    margin: 30px 0 0;
    width: 100%;
}

.prizes-discription h3 {
    color: #fff;
    font-family: Open Sans, sans-serif;
    letter-spacing: 0.3px;
    font-size: 35px;
}

.prizes-discription p {
    font-size: 20px;
    color: #fff;
}

.prizes-discription h4 {
    color: #fff;
    font-family: Open Sans, sans-serif;
    letter-spacing: 0.3px;
    font-size: 28px;
}

.prizes-discription li {
    color: #fff;
    list-style: none;
    font-size: 18px;
    margin: 20px 0 20px;
    position: relative;
    padding: 0 0 0 30px;
}

.prizes-discription li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #d63747;
}

.prizes-discription ul {
    padding: 0;
}

.matches-container .card-predict-shadow {
    box-shadow: none;
    border-radius: 0;
}

.matches-container .card-predict-shadow .match-card {
    /*border-radius: 0;*/
    box-shadow: none !important;
}

.matches-container .card-predict-shadow .match-card .match-card-header {
    background: #fff;
}

.matches-container .card-predict-shadow .match-card .match-card-footer {
    background: #f8f8f8;
    height: 30px;
    padding-top: 6px;
    font-family: Open Sans, sans-serif;
}

.matches-container .card-predict-shadow .match-card .match-card-body {
    background: #ffffff;
}

.matches-container .card-predict-shadow .match-card .match-card-body .team-area span {
    font-family: Open Sans, sans-serif;
    color: #000;
}

.matches-container .card-predict-shadow .match-card .match-card-header span {
    font-family: Open Sans, sans-serif;
}

.matches-cards .card-predict-shadow .match-card .v {
    font-family: Open Sans, sans-serif;
}

#prize-cards-con {
    font-family: Open Sans, sans-serif;
    font-size: 26px;
}

.matches-container #left-side {
    width: 100%;
    position: relative;
}

.matches-container #left-side:before {
    content: "";
    height: 100%;
    width: 100%;
    background: #111b2a;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
}

.matches-container .leader-board {
    max-width: 1170px;
    max-height: 760px;
    overflow-y: auto;
    margin: 0 auto;
    width: 100%;
    padding: 80px 20px;
}

#top-bar nav.navbar ul.navbar-nav {
    margin: 0 auto;
}

#lb-rows {
    max-height: 700px;
    overflow-y: auto;
}

.total-corner-cont {
    background: #ffffff;
    width: 100%;
    max-width: 350px;
    padding: 20px;
    text-align: center;
    border-bottom: 4px solid #d63747;
    margin: 20px 0 0;
    border-radius: 10px;
}

.total-corner-cont p {
    font-family: Open Sans, sans-serif;
    font-size: 23px;
}

.total-corner-cont button {
    border-radius: 0;
    font-family: Open Sans, sans-serif;
    font-size: 19px;
    margin: 16px 0 0 !important;
    display: inline-block;
    padding: 3px 13px 0;
    height: 43px;
    letter-spacing: 0.5px;
}

.total-corner-cont input {
    width: 100% !important;
    border-radius: 0px;
}

.total-corner-cont input:focus {
    outline: none;
    box-shadow: none;
}

.matches-cards {
    max-width: 1170px;
}

.matches-cards .card-predict-shadow {
    margin: 20px 20px;
}

.matches-cards .card-predict-shadow .match-card {
    position: relative;
    width: 425px;
    height: 190px;
    border-bottom: 4px solid #d63747;
}

.matches-container .leader-board {
    padding: 0 0;
}

.leaderboard-cont h2 {
    color: #000;
    font-family: Open Sans, sans-serif;
    text-align: center;
    font-size: 60px;
    letter-spacing: 0.3px;
    position: relative;
    margin: 0 0 40px;
}

.leaderboard-cont h2:before {
    content: "";
    width: 50px;
    height: 4px;
    position: absolute;
    background: #d63747;
    left: 50%;
    transform: translate(-50%, 0);
    top: 68px;
}

.leaderboard-cont {
    padding: 50px 0 60px;
    position: relative;
    background: #f1f1f1;
}

.matches-container .leader-board .rounded {
    background: rgb(20, 24, 33);
    background: radial-gradient(circle, rgb(46 54 72) 0%, rgb(28 35 50) 54%, rgb(34 38 46) 100%);
    border: 1px solid #3c3c3c !important;
    margin-bottom: 20px !important;
}

.matches-container .leader-board .rounded .rounded-circle {
    border: none !important;
    background: #d63747;
    border-radius: 4px !important;
    margin: 0 21px 0 0 !important;
}

.matches-container .leader-board .rounded .rounded-circle div {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700 !important;
    /*font-family: Open Sans, sans-serif;*/
}

.matches-container .leader-board .rounded span {
    color: #fff;
    font-weight: 600;
}

.matches-container .leader-board .rounded span.l-username {
    letter-spacing: 0;
    text-transform: uppercase;
}

.matches-container .leader-board .rounded.text-white i {
    color: #d63747;
}

.matches-container .leader-board .rounded.dark i {
    color: #fff;
    opacity: 0;
}

.matches-container .leader-board .rounded.dark i.fa-2x {
    opacity: 1;
}

.profile .modal-content,
.login .modal-content,
.cropper .modal-content {
    border-radius: 0px;
    border-bottom: 4px solid #d63747;
    background: #f1f1f1;
    border-top: none;
    border-left: none;
    border-right: none;
}

.congratulations .modal-content {
    background: rgb(245, 219, 60);
    background: linear-gradient(190deg, rgba(245, 219, 60, 1) 0%, rgba(186, 149, 9, 1) 100%);
}

.congratulations .modal-content .modal-header h5,
.congratulations .modal-content .modal-header h4 {
    font-family: Open Sans, sans-serif;
    font-size: 35px;
    text-align: center;
    width: 100%;
    box-shadow: 2px 0px 7px rgba(0, 0, 0, .3);
    letter-spacing: 0.5px;
}

.friends .modal-content .modal-header h5,
.history .modal-content .modal-header h5,
.profile .modal-content .modal-header h5,
.login .modal-content .modal-header h5,
.cropper .modal-content .modal-header h5 {
    font-family: Open Sans, sans-serif;
    font-size: 35px;
    text-align: center;
    width: 100%;
    color: #ffffff;
    letter-spacing: 0.5px;
    background: #d63747;
}

.congratulations .modal-content .modal-header,
.friends .modal-content .modal-header,
.history .modal-content .modal-header,
.profile .modal-content .modal-header,
.login .modal-content .modal-header,
.cropper .modal-content .modal-header {
    padding: 0;
    border: none;
    position: relative;
}

#prize-card-img {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .3);
}

.congratulations .modal-content .modal-header button.close {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    height: 52px;
    padding: 0 20px;
    opacity: 1;
    font-size: 35px;
    text-shadow: none;
}

.friends .modal-content .modal-header button.close,
.leaderboard .modal-content .modal-header button.close,
.currentPredicts .modal-content .modal-header button.close,
.history .modal-content .modal-header button.close,
.profile .modal-content .modal-header button.close,
.login .modal-content .modal-header button.close,
.cropper .modal-content .modal-header button.close,
.article .modal-content .modal-header button.close {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    height: 52px;
    padding: 0 20px;
    opacity: 1;
    background: #cb3140;
    font-size: 35px;
    text-shadow: none;
}

.congratulations .modal-content .modal-header button.close:focus,
.friends .modal-content .modal-header button.close:focus,
.leaderboard .modal-content .modal-header button.close:focus,
.currentPredicts .modal-content .modal-header button.close:focus,
.history .modal-content .modal-header button.close:focus,
.profile .modal-content .modal-header button.close:focus,
.login .modal-content .modal-header button.close:focus,
.cropper .modal-content .modal-header button.close:focus,
.article .modal-content .modal-header button.close:focus {
    outline: none;
    border: none;
}

.history .modal-content .modal-body table thead th {
    border-bottom: 1px solid #a1a1a1;
    border-top: 1px solid #a1a1a1;
}

.history .modal-content .modal-body table caption {
    font-family: Open Sans, sans-serif;
    font-weight: normal;
    letter-spacing: 0.5px;
    color: #5c5c5c;
}

.profile .modal-content .modal-body .form-group .profile-btn {
    margin: 30px 0 0;
}

.profile .modal-content .modal-body .form-group .profile-btn input,
.cropper .modal-content .modal-body input {
    background: #d63747;
    border: none;
    font-weight: normal;
    margin: 0;
    transition: 0.5s;
    font-family: Open Sans, sans-serif;
    font-size: 21px;
    letter-spacing: 0.5px;
    padding: 10px 23px 9px;
    border-radius: 0;
    position: relative;
}

.profile .modal-content .modal-body .form-group .profile-btn input:hover,
.cropper .modal-content .modal-body input:hover {
    background: #b92432;
}

.profile .modal-content .modal-body .form-group input[type="text"] {
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid #a1a1a1;
    border-radius: 0px !important;
    height: 25px;
    padding: 0;
    font-size: 15px;
}

.profile .modal-content .modal-body .form-group input[type="text"]:focus {
    outline: none;
    box-shadow: none;
}

.profile .modal-content .modal-body .form-group br {
    display: none;
}

.profile .modal-content .modal-body .form-group {
    margin: 0 0 30px;
}

.profile .modal-content .modal-body .form-group label {
    margin: 0;
    font-family: Open Sans, sans-serif;
    letter-spacing: 1px;
}

.profile .modal-content .modal-body .form-group:last-child {
    margin-bottom: 10px;
}

.profile .modal-content .modal-body .form-group .profile-btn {
    margin: 0 0 0;
}

.leaderboard .modal-content {
    border-radius: 0px;
    border-bottom: 4px solid #d63747;
    background: #f1f1f1;
    border-top: none;
    border-left: none;
    border-right: none;
}

.friends .modal-content .modal-header h4,
.leaderboard .modal-content .modal-header h4,
.currentPredicts .modal-content .modal-header h4,
.history .modal-content .modal-header h4,
.profile .modal-content .modal-header h4,
.article .modal-content .modal-header h4,
.cropper .modal-content .modal-header h4,
.login .modal-content .modal-header h4 {
    font-family: Open Sans, sans-serif;
    font-size: 35px;
    text-align: center;
    width: 100%;
    color: #ffffff;
    letter-spacing: 0.5px;
    background: #d63747;
    margin: 0 !important;
}

.leaderboard .modal-content .modal-header,
.currentPredicts .modal-content .modal-header,
.article .modal-content .modal-header {
    padding: 0;
    border: none;
    position: relative;
}

.leaderboard .modal-content .modal-body .container .rounded {
    margin: 0 0 13px !important;
    background: rgb(20, 24, 33);
    background: radial-gradient(circle, rgb(46 54 72) 0%, rgb(28 35 50) 54%, rgb(34 38 46) 100%);
    border: 1px solid #f1f1f1 !important;
}

.leaderboard .modal-content .modal-body .container .rounded .rounded-circle {
    border: none !important;
    background: #d63747;
    border-radius: 4px !important;
    margin: 0 5px 0 0 !important;
}

.leaderboard .modal-content .modal-body .container .rounded .rounded-circle div {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700 !important;
}

.leaderboard .modal-content .modal-body .container .rounded span.l-username {
    font-family: Open Sans, sans-serif;
    font-weight: normal;
    letter-spacing: 0.5px;
    color: #fff;
}

.leaderboard .modal-content .modal-body .container .rounded span {
    color: #fff;
    font-weight: 700;
}

.leaderboard .modal-content .modal-body .container .rounded i {
    color: #fff;
}

.leaderboard .modal-content .modal-body .container .rounded.text-white i {
    color: #d63747;
}

.leaderboard .modal-content .modal-body #lb-type-con select {
    margin-left: 0 !important;
    border: 1px solid #a1a1a1;
    border-radius: 0px;
}

.leaderboard .modal-content .modal-body #lb-type-con input {
    background: #d63747;
    border: none;
    border-radius: 0;
    font-family: Open Sans, sans-serif;
    letter-spacing: 0.5px;
}

.footer p {
    text-align: center;
    margin: 0;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
}

.footer {
    background: #d63747;
    padding: 15px 0;
}

#left-article-btn,
#right-article-btn {
    background-color: #be4823;
    color: #f1f1f1;
}

#left-article-btn:hover,
#right-article-btn:hover {
    background-color: #b92432;
}

@media only screen and (max-width: 1880px) {
    #left-side {
        width: 82%;
    }
}

@media only screen and (max-width: 1600px) {
    #left-side {
        width: 52%;
    }
}

@media only screen and (max-width: 1366px) {
    .matches-banner {
        background-size: cover;
    }
}

@media only screen and (max-width: 1200px) {
    #button-area {
        width: calc(100% - 20px);
        margin: 0 10px;
    }
}

@media only screen and (max-width: 992px) {
    #left-side {
        width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    #top-bar nav.navbar button.navbar-toggler {
        background: #d63747;
        padding: 1px 5px;
        border: none;
    }
    #top-bar nav.navbar button.navbar-toggler:focus {
        outline: none;
        border: none;
    }
    body>#top-bar {
        background: #1b2638;
    }
    #top-bar nav.navbar a.navbar-brand img {
        width: 100px;
    }
    #top-bar nav.navbar {
        padding: 5px 0;
    }
    #top-bar nav.navbar .navbar-collapse ul.navbar-nav {
        padding: 20px 0 20px;
    }
    #top-bar nav.navbar .navbar-collapse button.btn {
        margin-bottom: 24px !important;
    }
    #top-bar nav.navbar .navbar-collapse ul.navbar-nav li.nav-item {
        margin: 0;
    }
    .total-corner-cont {
        max-width: 425px;
    }
    .leaderboard .modal-content .modal-body #lb-type-con select {
        width: 180px !important;
    }
}

@media only screen and (max-width: 767px) {
    .matches-banner h1 {
        font-size: 57px;
    }
    .matches-banner {
        padding: 230px 0 110px;
    }
    .matches-container .matches-list h2 {
        font-size: 40px;
    }
    .note-text {
        padding: 0 20px;
        text-align: center;
    }
    #leaderboard-con {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    #predict-history-table {
        padding: 0 !important;
    }
    .info-text-font {
        font-size: 14px;
    }
}

@media only screen and (max-width: 880px) {}

@media only screen and (max-width: 736px) {
    #top-bar nav.navbar a.navbar-brand img {
        width: 60px;
    }
    #top-bar.fixed nav.navbar a.navbar-brand img {
        width: 60px;
    }
}

@media only screen and (max-width: 576px) {
    #prize-cards-con>img {
        width: 50%
    }
}

@media only screen and (max-width: 575px) {
    .matches-cards .card-predict-shadow .match-card {
        width: 360px;
    }
    .matches-banner h1 {
        font-size: 42px;
    }
    .matches-banner p {
        font-size: 14px;
    }
    .matches-banner {
        padding: 200px 0 90px;
    }
    .matches-container .matches-list h2 {
        font-size: 40px;
        line-height: 32px;
    }
    .matches-container .matches-list h2:before {
        top: 78px;
    }
    .right,
    .left {
        width: 130px;
        height: 120px;
    }
    .matches-cards .card-predict-shadow {
        margin: 12px 0;
    }
    .matches-cards .card-predict-shadow .match-card {
        width: 100%;
    }
    .prizes-cont {
        padding: 60px 0 50px;
    }
    .prizes-discription p {
        font-size: 16px;
    }
    .prizes-discription li {
        font-size: 17px;
        margin: 10px 0 10px;
        padding: 0 0 0 30px;
    }
    .leaderboard-cont h2 {
        font-size: 40px;
    }
    .prizes-cont h2 {
        font-size: 40px;
    }
    .prizes-cont h2:before {
        top: 53px;
    }
    #matches {
        padding-left: 0;
        padding-right: 0;
    }
    .prizes-discription h3 {
        font-size: 27px;
    }
    .prizes-discription h4 {
        font-size: 25px;
    }
    .matches-container .leader-board .rounded {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .leaderboard-cont {
        padding: 50px 0 40px;
    }
}