/* Custom Fonts */
@font-face {
    font-family: 'supercell-magic';
    src: url("../fonts/supercell-magic.woff") format("woff");
}

/* ---------------- QUIZ CSS ----------------- */

/* importing google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
}

/* body{
    background: #007bff;
} */

::selection {
    color: #fff;
    background: #007bff;
}

.start_btn,
.info_box,
.quiz_box,
.result_box {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.info_box.activeInfo,
.quiz_box.activeQuiz,
.result_box.activeResult {
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.start_btn button {
    font-size: 25px;
    font-weight: 500;
    color: #007bff;
    padding: 15px 30px;
    outline: none;
    border: none;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
}

.info_box {
    width: 540px;
    background: #fff;
    border-radius: 5px;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.info_box .info-title {
    height: 60px;
    width: 100%;
    border-bottom: 1px solid lightgrey;
    display: flex;
    align-items: center;
    padding: 0 30px;
    border-radius: 5px 5px 0 0;
    font-size: 20px;
    font-weight: 600;
}

.info_box .info-list {
    padding: 15px 30px;
}

.info_box .info-list .info {
    margin: 5px 0;
    font-size: 17px;
}

.info_box .info-list .info span {
    font-weight: 600;
    color: #007bff;
}

.info_box .buttons {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 30px;
    border-top: 1px solid lightgrey;
}

.info_box .buttons button {
    margin: 0 5px;
    height: 40px;
    width: 100px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 5px;
    border: 1px solid #007bff;
    transition: all 0.3s ease;
}

.quiz_box {
    width: 550px;
    background: #fff;
    border-radius: 5px;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.quiz_box header {
    position: relative;
    z-index: 2;
    height: 70px;
    padding: 0 30px;
    background: #fff;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.1);
}

.quiz_box header .title {
    font-size: 20px;
    font-weight: 600;
}

.quiz_box header .timer {
    color: #004085;
    background: #cce5ff;
    border: 1px solid #b8daff;
    height: 45px;
    padding: 0 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 145px;
}

.quiz_box header .timer .time_left_txt {
    font-weight: 400;
    font-size: 17px;
    user-select: none;
}

.quiz_box header .timer .timer_sec {
    font-size: 18px;
    font-weight: 500;
    height: 30px;
    width: 45px;
    color: #fff;
    border-radius: 5px;
    line-height: 30px;
    text-align: center;
    background: #343a40;
    border: 1px solid #343a40;
    user-select: none;
}

.quiz_box header .time_line {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 3px;
    background: #007bff;
}

section {
    padding: 25px 30px 20px 30px;
    background: #fff;
}

section .que_text {
    font-size: 25px;
    font-weight: 600;
}

section .option_list {
    padding: 20px 0px;
    display: block;
}

section .option_list .option {
    background: aliceblue;
    border: 1px solid #84c5fe;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 17px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section .option_list .option:last-child {
    margin-bottom: 0px;
}

section .option_list .option:hover {
    color: #004085;
    background: #cce5ff;
    border: 1px solid #b8daff;
}

section .option_list .option.correct {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

section .option_list .option.incorrect {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

section .option_list .option.disabled {
    pointer-events: none;
}

section .option_list .option .icon {
    height: 26px;
    width: 26px;
    border: 2px solid transparent;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    pointer-events: none;
    transition: all 0.3s ease;
    line-height: 24px;
}

.option_list .option .icon.tick {
    color: #23903c;
    border-color: #23903c;
    background: #d4edda;
}

.option_list .option .icon.cross {
    color: #a42834;
    background: #f8d7da;
    border-color: #a42834;
}

footer {
    height: 60px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid lightgrey;
}

footer .total_que span {
    display: flex;
    user-select: none;
}

footer .total_que span p {
    font-weight: 500;
    padding: 0 5px;
}

footer .total_que span p:first-child {
    padding-left: 0px;
}

footer button {
    height: 40px;
    padding: 0 13px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    background: #007bff;
    border: 1px solid #007bff;
    line-height: 10px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

footer button:hover {
    background: #0263ca;
}

footer button.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.result_box {
    background: #fff;
    border-radius: 5px;
    display: flex;
    padding: 25px 30px;
    width: 450px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.result_box .icon {
    font-size: 100px;
    color: #007bff;
    margin-bottom: 10px;
}

.result_box .complete_text {
    font-size: 20px;
    font-weight: 500;
}

.result_box .score_text span {
    display: flex;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 500;
}

.result_box .score_text span p {
    padding: 0 4px;
    font-weight: 600;
}

.result_box .buttons {
    display: flex;
    margin: 20px 0;
}

.result_box .buttons button {
    margin: 0 10px;
    height: 45px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 5px;
    border: 1px solid #007bff;
    transition: all 0.3s ease;
}

.buttons button.restart {
    color: #fff;
    background: #007bff;
}

.buttons button.restart:hover {
    background: #0263ca;
}

.buttons button.quit {
    color: #007bff;
    background: #fff;
}

.buttons button.quit:hover {
    color: #fff;
    background: #007bff;
}

body {
    /* background-color: #d6d6d6 !important;  */
    font-family: 'Open Sans', sans-serif;
    /*background-image: url(/img/backgrounds/honey_im_subtle.png); */
    background-image: url(/img/backgrounds/topography-50.png);
    background-repeat: repeat;
}

.body {
    background-color: rgb(211, 211, 211);
}

.container {
    width: 93%;
    padding-top: 10px !important;
}

.divider2 {
    height: 2px;
    overflow: hidden;
    background-color: #000000;
    margin: 25px 0;
}

.divider3 {
    height: 4px;
    overflow: hidden;
    background-color: #000000;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 2px 4px rgb(0 0 0 / 30%), 0 0 40px rgb(0 0 0 / 26%);
}

.divider4 {
    height: 2px;
    overflow: hidden;
    background-color: #cfa23b;
    margin: 25px 0;
}

.divider5 {
    height: 2px;
    overflow: hidden;
    background-color: #89898952;
    margin: 25px 0;
}

.goldText {
    color: #cfa23b;
}

.clearBoth {
    clear: both;
}

.opacity60 {
    opacity: 60%;
}

.opacity70 {
    opacity: 70%;
}

.grayscale {
    filter: grayscale(1);
}

.justifyContentCenter {
    justify-content: center;
}

.overflowVisible {
    overflow: visible;
}

.borderRadius10 {
    border-radius: 10px;
}

.borderRadius10_top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.supporters_removeMargin {
    margin-bottom: -10px !important;
}

.clanSearchPadding {
    margin-bottom: 12px;
}

.headerWrapper {
    position: relative;
    /* z-index: 999999970; */
}

.input-color {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0 5px 0 5px;
}

.input-color p {
    padding-left: 20px;
}

.input-color .color-box {
    width: 15px;
    height: 15px;
    display: inline-block;
    background-color: #ccc;
    position: absolute;
    /* left: 5px; */
    /* top: 5px; */
}

.mainHeader_h1 {
    margin: 0 !important;
}

.owl-carousel {
    margin-top: 12px;
    z-index: 0 !important;
}

#owl-carousel .item img {
    display: block;
    width: 100%;
    height: auto;
}

#owl-carousel2 {
    margin-top: 0;
    z-index: 0 !important;
}

#owl-carousel2 .item img {
    display: block;
    max-width: 100%;
    height: auto;
}

.owl-prev,
.owl-next {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    border: 0px solid black;
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-prev i,
.owl-next i {
    transform: scale(2, 5);
    color: #ccc;
}

.owl-dots {
    position: absolute;
    top: 94%;
    left: 44%;
}

#owl-carousel2 .owl-dots {
    position: absolute;
    top: 100%;
    left: 41%;
}

.position_relative {
    position: relative;
}

.figure {
    display: inline-block;
}

.inline-icon {
    vertical-align: bottom;
}

.inline-icon2 {
    line-height: 62px !important;
}

.inline-icon-middle {
    vertical-align: middle;
}

.middle-indicator {
    position: absolute;
    top: 50%;
}

.middle-indicator-text {
    font-size: 4.2rem;
}

a.middle-indicator-text {
    color: white !important;
}

.content-indicator {
    width: 64px;
    height: 64px;
    background: none;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

/* .indicators{
       visibility: hidden;
   } */

.hidden {
    display: none !important;
}

.collectionDay.hidden {
    display: none !important;
}

.pointsBreakdown.hidden {
    display: none !important;
}

.centerDiv {
    width: 96%;
    margin: 0 auto;
}

.flex_wrap_spaceAround {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.flex_wrap_flexStart {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.noMarginTop {
    margin-top: 0 !important;
}

.noMarginBottom {
    margin-bottom: 0 !important;
}

.marginTop20 {
    margin-top: 20px !important;
}

.marginTop30 {
    margin-top: 30px !important;
}

.marginRight5 {
    margin-right: 5px;
}

.marginLeft7 {
    margin-left: 7px;
}

.paddingSide10 {
    padding-left: 10px;
    padding-right: 10px;
}

.pageFooter {
    padding: 10px 0;
    color: white;
    background-color: #000000 !important;
}

.pageFooter_coc {
    padding: 10px 0;
    color: white;
    background-color: #cfa23b !important;
}

.pageFooter_container {
    width: 85%;
    margin: 0 auto !important;
    padding: 0 5px 30px 5px;
}

.adsbygoogle {
    z-index: 1 !important;
}

.ad_containter1 {
    margin: 10px !important;
}

.ad_container2 {
    margin-top: 12px;
    margin-bottom: 8px;
    z-index: -1 !important;
}

.ad_container3 {
    margin-top: 12px;
    margin-bottom: 10px;
}

.ad_container4 {
    margin-top: 12px;
    margin-bottom: 14px;
}

.navbarLogo {
    height: 62px;
    padding: 3px 0;
    padding-right: 10px;
}

.navbarGameLogo {
    height: 62px;
    padding: 3px 0;
    padding-left: 10px;
    /* border-left: rgb(185, 185, 185) solid 1px; */
}

.sidenav {
    z-index: 999999999 !important;
}

.sidenav_background {
    background-color: #000000 !important;
}

.sidenav-overlay {
    z-index: 999999980 !important;
}

nav .sidenav-trigger {
    float: right !important;
}

.sidenav .collapsible-header {
    padding: 0 32px !important;
    color: white;
}

.sidenav .collapsible-body {
    background-color: #4178ca;
}

/* .sidenav .collapsible-body .coc {
    background-color: #860c0c !important;
} */

.sidenav .collapsible-body li a {
    padding: 0 24.5px 0 45px !important;
    color: white;
}

.sidenav .collapsible-body li a:hover {
    background-color: #0c3d86;
}

/* .sidenav .collapsible-body_coc li a:hover {
    background-color: #860c0c !important;
} */

.sidenavSubPadding {
    /* padding: 0 0 0 15px !important; */
    color: rgb(13, 71, 161) !important;
    font-weight: bold !important;
}

.collapsible-header:focus {
    background-color: #0c3d86;
}

/* .collapsible-header .coc:focus {
    background-color: #a1db18 !important;
} */

.sidenavGreyBackground {
    background-color: #eee !important;
    /* border-top: 1px solid rgb(189, 189, 189) !important; */
}

.sidenavGreyBackground a {
    color: #000000 !important;
    /* border-top: 1px solid rgb(189, 189, 189) !important; */
}

.sidenavBlueBackground {
    background-color: #0f5dd1 !important;
    /* border-top: 1px solid rgb(189, 189, 189) !important; */
}

.sidenavBlueBackground a {
    color: white !important;
    /* border-top: 1px solid rgb(189, 189, 189) !important; */
}

.sidenavBlueBackground2 {
    background-color: #4d70a5 !important;
}

.sidenavBlueBackground2 a {
    color: white !important;
    /* border-top: 1px solid rgb(189, 189, 189) !important; */
}

.sidenavGoldBackground {
    background-color: #ffd461 !important;
}

.sidenavGoldBackground a {
    color: black !important;
}

.sidenavGoldBackground a:hover {
    background-color: #aa8631 !important;
}

.sidenavGoldBackground .collapsible-accordion .collapsible-header:focus {
    background-color: #aa8631 !important;
}

.sidenavGoldBackground .collapsible-body {
    background-color: #ffd461;
}

.sidenavGoldBackground2 {
    background-color: #f1c03e !important;
}

.sidenavGoldBackground2 a {
    color: black !important;
}

.sidenavGoldBackground2 a:hover {
    background-color: #856927 !important;
}

.sidenavGoldBackground2 .collapsible-accordion .collapsible-header:focus {
    background-color: #aa8631 !important;
}

.sidenavGoldBackground3 {
    background-color: #ca8d06 !important;
}

.sidenavGoldBackground3 a {
    color: black !important;
}

.sidenavGoldBackground3 a:hover {
    background-color: #856927 !important;
}

.sidenavGoldBackground3 .collapsible-accordion .collapsible-header:focus {
    background-color: #aa8631 !important;
}

.collapsible-accordion:focus {
    border: 1px solid #0c3d86;
}

.sidenavAccordionColor .collapsible-header:focus {
    border: 1px solid #856927 !important;
    background-color: #856927;
}

.sidenavGreyBackground2 {
    background-color: #eee !important;
    color: #000000;
}

.tabs {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    height: 160px;
    width: 100%;
    background-color: #fff;
    margin: 0 auto;
    margin-bottom: 15px;
    white-space: nowrap;
}

.tabs .tab {
    display: inline-block;
    text-align: center;
    line-height: 48px;
    height: 160px;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

.tabs .tab a {
    color: #0d48a1ab;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    font-size: 16px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: color .28s ease, background-color .28s ease;
    transition: color .28s ease, background-color .28s ease;
}

.tabs .tab a:hover,
.tabs .tab a.active {
    background-color: #eaeaea;
    color: #000000;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.tabs .tab a:focus,
.tabs .tab a:focus.active {
    background-color: #eaeaea;
    outline: none;
}

.tabs .indicator {
    background-color: #000000;
}

/*Color of underline*/

.playerSearch {
    width: 100%;
    height: 50px;
    margin: 0 !important;
    padding: 0;
    background-color: #000000 !important;
}

.playerSearch_coc {
    width: 100%;
    height: 50px;
    margin: 0 !important;
    padding: 0;
    background-color: #cfa23b !important;
}

.playerSearch2 {
    clear: both;
    width: 93%;
    max-width: 1280px;
    margin: 0 auto !important;
    /* padding: 0 10px; */
    height: 40px;
    border-radius: 5px;
    position: relative;
}

.playerSearch3 {
    width: 70%;
    margin: 0 auto !important;
    /* padding: 0 10px; */
    height: 40px;
    border-radius: 5px;
    border: 3px solid rgba(34, 36, 38, .15);
}

.playerSearch4 {
    clear: both;
    width: 100%;
    max-width: 1280px;
    /* margin: 0 auto !important; */
    /* padding: 0 10px; */
    height: 40px;
    border-radius: 5px;
    position: relative;
}

.playerSearchInput {
    margin: 0 !important;
}

.playerSearchSelect {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    height: 40px;
    width: 90px;
    font-size: 115% !important;
    font-family: 'Open Sans';
    background-color: rgb(219, 219, 219);
    border: none !important;
}

.playerSearchSelect:focus {
    border: 2px solid rgb(16, 71, 161) !important;
    box-shadow: none !important;
    outline: none !important;
}

.playerSearchInput2 {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    height: 40px;
    font-size: 110% !important;
    position: absolute;
    border: 0 !important;
    padding-left: 10px !important;
    font-family: 'Open Sans';
    width: 89.8% !important;
    padding-left: 10px;
}

.playerSearchInput4 {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    height: 40px;
    font-size: 110% !important;
    position: absolute;
    border: 0 !important;
    padding-left: 10px !important;
    font-family: 'Open Sans';
    width: 93% !important;
}

.playerSearchInput4:focus {
    border-bottom: none !important;
    box-shadow: none !important;
}

.playerSearchInput5 {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    height: 40px;
    font-size: 110% !important;
    position: absolute;
    border: 0 !important;
    padding-left: 10px !important;
    font-family: 'Open Sans';
    width: 93% !important;
}

.playerSearchInput5:focus {
    border-bottom: none !important;
    box-shadow: none !important;
}

.searchForm {
    margin: 0 !important;
}

.searchHeader {
    width: 100%;
    padding-top: 16px;
    padding: 0 5px;
    background-color: #000000 !important;
}

.searchHeader_coc {
    width: 100%;
    padding-top: 16px;
    padding: 0 5px;
    background-color: #cfa23b !important;
}

.searchHeader2 {
    width: 100%;
    padding-top: 16px;
    padding: 0 2rem;
    border-radius: 10px;
    background-color: #000000 !important;
}

.searchHeader2_coc {
    width: 100%;
    padding-top: 16px;
    padding: 0 2rem;
    border-radius: 10px;
    background-color: #cfa23b !important;
}

.searchHeader3 {
    width: 100%;
    padding-top: 16px;
    padding: 0 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.searchText {
    font-size: 24px;
    font-weight: bold;
    margin: 0 !important;
    padding-bottom: 10px;
}

.searchText1 {
    font-size: 18px;
    margin: 0 !important;
    padding-bottom: 10px;
}

.searchText2 {
    margin: 0 !important;
    padding-bottom: 10px;
}

.searchText3 {
    margin: 0 0 0 8px !important;
    padding-bottom: 5px;
    font-size: 115%;
}

.searchResults {
    padding: 0 24px;
}

.searchResults2 {
    padding: 0 12px;
}

.playerTag_howTo {
    width: 100%;
    padding: 0;
    padding-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.playerTag_howTo2 {
    width: 100%;
    padding: 0;
    padding-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
}

.playerTag_howTo_coc {
    width: 100%;
    padding: 0;
    padding-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-color: #cfa23b !important;
}

.playerTag_howTo2_coc {
    width: 100%;
    padding: 0;
    padding-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
    background-color: #cfa23b !important;
}

::placeholder {
    color: gray;
}

.playerSearchInput2:focus {
    border-bottom: none !important;
    box-shadow: none !important;
}

.playerSearchButton {
    background-color: rgb(219, 219, 219);
    color: black;
    /* border-radius: 5px; */
    font-size: 140%;
    padding: 0;
    vertical-align: middle;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    float: right;
    box-shadow: none !important;
}

.playerSearchButton:hover {
    background-color: rgb(172, 172, 172);
    color: black;
}

.playerSearchButton:focus {
    background-color: rgb(13, 71, 161);
    color: white;
}

.playerSearchButton2 {
    background-color: rgb(219, 219, 219);
    color: black;
    /* border-radius: 5px; */
    font-size: 140%;
    padding: 0;
    padding-top: -10px;
    vertical-align: middle;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    float: right;
    box-shadow: none !important;
}

.loadingIcon {
    background-color: white;
    color: black;
    /* border-radius: 5px; */
    font-size: 140%;
    padding: 0;
    padding-top: 8px;
    vertical-align: middle;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    float: right;
    box-shadow: none !important;
    pointer-events: none;
}

.loadingIcon:hover {
    background-color: white;
    color: black;
}

.loadingIcon:focus {
    background-color: white;
    color: white;
}

.preloader-wrapper.extrasmall {
    width: 25px;
    height: 25px;
}

.playerContainer {
    padding: 4px;
}

.clanContainer {
    margin: 0 auto;
    max-width: 1280px;
    box-sizing: border-box;
    padding: 0;
}

.playerHeaderWrapper {
    padding: 10px 0;
}

.playerHeaderWrapper2 {
    padding: 0;
}

.playerHeader {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}

.playerHeader_badge {
    max-width: 90px !important;
    float: left;
    position: relative;
    /* margin-top: 15px; */
    /* margin-right: 10px; */
}

.playerHeader_badge2 {
    max-width: 70px !important;
    float: left;
    position: relative;
    /* margin-top: 15px; */
    /* margin-right: 10px; */
}

.playerHeader_badge_wrapper {
    max-width: 90px !important;
    float: left;
    position: relative;
    margin-top: 15px;
    margin-right: 10px;
}

.playerHeader_badge_coc {
    max-width: 80px !important;
    float: left;
    position: relative;
    /* margin-top: 15px; */
    /* margin-right: 10px; */
}

.playerHeader_name_coc {
    margin: 20px 0 0 0;
    font-family: 'supercell-magic';
    font-size: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    /* padding-left: 10px; */
}

.playerHeader_nameTag {
    padding-left: 0 !important;
    padding-top: auto;
    padding-bottom: auto;
}

.playerHeader_name {
    margin: 30px 0 0 0;
    font-family: 'supercell-magic';
    font-size: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    /* padding-left: 10px; */
}

.playerHeader_tag {
    /* float: left;
    position: relative; */
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 3px;
    /* padding-left: 10px; */
}

.playerHeader_clan {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.playerHeader_clan2 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    margin-left: -.25rem !important;
}

.playerHeader_rating {
    margin: 0;
    font-family: 'supercell-magic';
    font-size: 22px;
}

.playerHeader_stats {
    clear: both;
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    /* padding-top: 10px; */
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

/* .playerHeader_ratingTitle {

} */

.rating-badge {
    max-width: 100px !important;
    float: right;
    position: relative;
}

.player-rating-title {
    padding: 10px 0 10px 0 !important;
}

.player-rating-title {
    margin: 0;
}

.playerStats {
    /* height: 30px; */
    display: inline;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.playerStats2 {
    padding-left: 4px !important;
}

.playerClan {
    /* height: 30px; */
    display: flex;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.playerClanNameURL {
    color: rgba(0, 0, 0, 0.87) !important;
}

.playerClanNameURL:hover {
    color: rgb(13, 71, 161) !important;
}

.noColPadding {
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.noColPadding2 {
    padding: 0 !important;
}

.blog_ulListStyle {
    list-style-type: disc;
}

.blog_listStyle {
    display: list-item;
    list-style-type: disc !important;
    margin: 0.5rem 4rem;
}

.supporters_ul {
    list-style: none;
    line-height: 2.5rem;
}

.supporters_ul li:before {
    content: '✓ ';
    color: green;
    font-weight: bolder;
}

.player-details-top {
    font-weight: bold;
    margin: 0;
    font-family: 'Open Sans';
    font-size: 18px !important;
    line-height: 0;
    vertical-align: middle;
    height: 18px;
    display: flex;
    align-items: center;
    padding: 5px 0;
    margin-bottom: 10px;
}

.player-details-imgs {
    height: 25px;
}

.player-clan-details {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.player-clan-details {
    font-weight: bold;
    margin: 0;
    font-family: 'Open Sans';
    font-size: 16px !important;
    line-height: 0;
    vertical-align: middle;
    height: 25px;
    align-items: center;
    /* justify-content: center; */
}

.playerClanBadgeImg {
    height: 30px;
}

.playerClanBadgeImg2 {
    height: 36px;
}

.playerClanImg {
    clear: both;
    position: relative;
    float: left;
    /* display: flex;
    align-items: center; */
    margin: 0;
    margin-left: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.playerClanItem {
    float: left;
    position: relative;
    padding-top: 2px;
    padding-left: 5px;
    padding-right: 5px;
    border-left: 1px solid rgba(34, 36, 38, .15);
    font-size: 12px !important;
}

.coc_playerLabelImg {
    clear: both;
    position: relative;
    float: left;
    margin: 0;
    margin-left: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    padding-right: 7px;
}

.coc_playerLabelImg2 {
    float: left;
    position: relative;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 12px !important;
}

.player-details-top-cwr {
    font-weight: bold;
    /* letter-spacing: 0.1em; */
    margin: 0;
    /* font-family: 'supercell-magic'; */
    font-size: 1em;
    line-height: 1;
}

.player-details-bottom {
    font-size: .75rem;
    line-height: 1.4rem;
    font-weight: 400;
    margin: 0;
}

.playerRatingsWrapper {
    padding: 10px 0;
    /* display: flex; */
}

.player-rating-emblem {
    float: left;
    position: relative;
    height: 25px;
}

.player-rating-title {
    font-size: 18px;
    font-family: 'Supercell-Magic';
    font-weight: bold;
}

.player-rating {
    float: right;
    /* position: relative; */
    font-size: 22px;
    font-family: 'Supercell-Magic';
    font-weight: bold;
    padding-left: 4px;
}

.player-stats-title-wrapper {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-family: 'Open Sans';
    /* font-weight: bold;  */
    color: rgb(255, 255, 255);
    width: 100%;
    /* background: repeating-linear-gradient(
    -55deg,
    #333,
    #333 10px,
    #444 10px,
    #444 20px
    ); */
    background-color: rgb(13, 71, 161);
    /* border-top: 2px solid rgb(212, 212, 212);
    border-bottom: 2px solid rgb(212, 212, 212); */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
    border-radius: 5px;
}

.player-stats-title-wrapper_coc {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-family: 'Open Sans';
    /* font-weight: bold;  */
    color: rgb(255, 255, 255);
    width: 100%;
    /* background: repeating-linear-gradient(
    -55deg,
    #333,
    #333 10px,
    #444 10px,
    #444 20px
    ); */
    background-color: #cfa23b;
    /* border-top: 2px solid rgb(212, 212, 212);
    border-bottom: 2px solid rgb(212, 212, 212); */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
    border-radius: 5px;
}

.player-stats-title {
    display: flex;
    align-items: center;
    margin: 0 !important;
    /* float: left;
    position: relative; */
    font-weight: bold;
}

.player-stats-title_coc {
    display: flex;
    align-items: center;
    margin: 0 !important;
    /* float: left;
    position: relative; */
    font-weight: bold;
    color: #000;
}

.player-stats-title-img {
    height: 20px;
    padding-right: 5px;
}

.player-stats-title-points {
    margin: 0 !important;
    width: 100%;
    text-align: right;
    color: white;
    padding-right: 5px;
    font-size: 16px;
    font-family: 'Open Sans';
    font-weight: bold;
}

.player-stats-metric {
    width: 100%;
    display: flex;
}

.player-stats-metric-title {
    font-size: 16px;
    font-family: 'Open Sans';
    padding-left: 15px;
}

.player-stats-metric-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin-left: 5px;
    margin-right: 5px;
    top: -15px;
    margin-bottom: 6px;
}

.player-stats-metric-counter {
    font-size: 16px;
    font-family: 'Open Sans';
    font-weight: bold;
    padding-right: 15px;
}

.player-stats-icon {
    display: flex;
    align-items: center;
}

.cwrImg {
    margin: 0;
    padding-right: 5px;
    width: 50px;
}

.cwrImg2 {
    margin: 0;
    padding-right: 1px;
    padding-left: 1px;
    width: 20px;
}

.cwrImg3 {
    margin: 0;
    padding-right: 1px;
    padding-left: 1px;
    width: 20px;
    vertical-align: middle;
}

.cwrImg4 {
    margin: 0;
    padding-right: 1px;
    padding-left: 1px;
    width: 24px;
    vertical-align: middle;
}

.cwrStats {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
}

.warWinImg {
    margin: 0;
    width: 25px;
}

.cdCardsImg {
    margin: 0;
    width: 35px;
}

/* CLAN PAGE CSS */
.clanHeader_badge {
    max-width: 100px !important;
    float: left;
    position: relative;
    margin: 15px 0;
}

.clanHeader_badge_coc {
    max-width: 100px !important;
    float: left;
    position: relative;
    margin: 15px 10px 15px 0;
}

.clanNameTag {
    position: relative;
    float: left;
    vertical-align: middle;
}

.clanHeader_name {
    margin: 30px 0 0 0;
    font-family: 'supercell-magic';
    font-size: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.clanHeader_name_coc {
    margin: 30px 0 0 0;
    font-family: 'supercell-magic';
    font-size: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #cfa23b;
}

.clanHeader_description {
    clear: both;
    position: relative;
    vertical-align: middle;
    /* margin-left: 15px; */
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    width: 410px;
    line-height: 1.5;
}

.clanHeader_description2 {
    clear: both;
    position: relative;
    vertical-align: middle;
    margin-left: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    width: 392px;
    line-height: 1.5;
}

.clanHeader_tag {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: bold;
}

.clanHeader_flag {
    /* position: relative;
    float: left; */
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 0.8rem;
    font-weight: bold;
}

.clanHeader_statsWrapper {
    position: relative;
    float: left;
    width: 100%;
    height: 50px;
    color: #FFFFFF;
    background: url("../img/ui/bg_pattern.png") top left repeat var(--color-blue);
    background-image: url("../img/ui/bg_pattern.png") top left repeat var(--color-blue);
}

.clanHeader_statsCol {
    padding: 0 2px !important;
}

.clanHeader_stats {
    clear: both;
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 25px;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.clanHeader_stats2 {
    clear: both;
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding-top: 0;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-top: -.612rem;
}

.clanHeader_statsCaption {
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    line-height: 1.4rem;
    font-weight: 400;
}

.clanHeader_navbar {
    /* float: left; */
    display: inline-block;
    position: relative;
    /* height: 45px; */
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid rgba(34, 36, 38, .15);
    font-weight: bold;
    font-size: 14px;
    /* margin-bottom: 0 !important; */
    /* z-index: 9999; */
}

.clanHeader_navbar ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.clanHeader_navbar ul li {
    display: inline-block;
    /* padding: 7px 10px; */
    border-radius: 5px;
}

.clanHeader_navbar ul li a {
    text-decoration: none;
    display: block;
    padding: .75rem 1.25rem;
    /* padding: .2em .5em;  */
    color: #000;
}

.clanHeader_navbar ul li:hover {
    color: rgb(13, 71, 161);
    border-bottom: 4px solid rgb(13, 71, 161);
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.clanHeader_navbar ul li ul {
    display: none;
    position: absolute;
    transition: all 1s ease;
    margin-top: .25rem !important;
    /* margin-left: -10px; */
    background-color: white;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.clanHeader_navbar ul li:hover ul {
    display: block;
    z-index: 9998;
}

.clanHeader_navbar ul li ul li {
    display: block;
    /* margin-top: 10px;
    margin-bottom: 10px; */
    width: 205px;
    /* padding: 10px 0; */
    /* border-top: 4px solid white;
    border-bottom: 4px solid white; */
    border-radius: 0 !important;
}

.clanHeader_navbar ul li ul li a {
    display: block;
    /* margin-top: 10px;
    margin-bottom: 10px; */
    width: 205px;
    padding: 1rem 1.25rem;
    /* border-top: 4px solid white;
    border-bottom: 4px solid white; */
}

.clanHeader_navbar ul li ul li:hover {
    color: rgb(13, 71, 161) !important;
    background-color: gainsboro;
    /* border-top: 4px solid rgb(221, 0, 0); */
    border-bottom: 1px solid gainsboro;
    border-radius: 0 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.clanHeader_navbar_coc {
    /* float: left; */
    display: inline-block;
    position: relative;
    /* height: 45px; */
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid rgba(34, 36, 38, .15);
    font-weight: bold;
    font-size: 14px;
    /* margin-bottom: 0 !important; */
    /* z-index: 9999; */
}

.clanHeader_navbar_coc ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.clanHeader_navbar_coc ul li {
    display: inline-block;
    /* padding: 7px 10px; */
    border-radius: 5px;
}

.clanHeader_navbar_coc ul li a {
    text-decoration: none;
    display: block;
    padding: .75rem 1.25rem;
    /* padding: .2em .5em;  */
    color: #000;
}

.clanHeader_navbar_coc ul li:hover {
    color: rgb(13, 71, 161);
    border-bottom: 4px solid #cfa23b;
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.clanHeader_navbar_coc ul li ul {
    display: none;
    position: absolute;
    transition: all 1s ease;
    margin-top: .25rem !important;
    /* margin-left: -10px; */
    background-color: white;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.clanHeader_navbar_coc ul li:hover ul {
    display: block;
    z-index: 9998;
}

.clanHeader_navbar_coc ul li ul li {
    display: block;
    /* margin-top: 10px;
    margin-bottom: 10px; */
    width: 175px;
    /* padding: 10px 0; */
    /* border-top: 4px solid white;
    border-bottom: 4px solid white; */
    border-radius: 0 !important;
}

.clanHeader_navbar_coc ul li ul li a {
    display: block;
    /* margin-top: 10px;
    margin-bottom: 10px; */
    width: 175px;
    padding: 1rem 1.25rem;
    /* border-top: 4px solid white;
    border-bottom: 4px solid white; */
}

.clanHeader_navbar_coc ul li ul li:hover {
    color: rgb(13, 71, 161) !important;
    background-color: gainsboro;
    /* border-top: 4px solid rgb(221, 0, 0); */
    border-bottom: 1px solid gainsboro;
    border-radius: 0 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.cardHeader_navbar {
    display: inline-block;
    position: relative;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid rgba(34, 36, 38, .15);
    font-weight: bold;
}

.borderBottom {
    border-bottom: 1px solid gainsboro;
}

.disabledNavLink {
    color: currentColor;
    cursor: not-allowed !important;
    opacity: 0.5;
    text-decoration: none;
}

.clanHeader_navbar2 {
    float: left;
    position: relative;
    /* height: 45px; */
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid rgba(34, 36, 38, .15);
    font-weight: bold;
    font-size: 14px;
    margin-top: -15px !important;
    /* margin-bottom: 0 !important; */
}

.clanHeader_navbar2 ul {
    margin: 0;
    padding: .5em 0;
    list-style-type: none;
}

.clanHeader_navbar2 ul li {
    display: inline;
    padding: 7px 0;
}

.clanHeader_navbar2 ul li a {
    text-decoration: none;
    display: inline-block;
    padding: .2em .5em;
    color: #000;
}

.clanHeader_navbar2 ul li:hover {
    color: rgb(13, 71, 161);
    border-bottom: 4px solid rgb(221, 0, 0);
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.activeClanPage {
    color: rgb(13, 71, 161);
    border-bottom: 4px solid rgb(13, 71, 161) !important;
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.activeClanPage_coc {
    color: rgb(13, 71, 161);
    border-bottom: 4px solid #cfa23b !important;
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.activeClanPage2 {
    color: rgb(13, 71, 161);
    background-color: gainsboro;
    /* border-top: 4px solid rgb(221, 0, 0) !important;
    border-bottom: 4px solid rgb(221, 0, 0) !important; */
    border-radius: 0 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.playerHeader_navbar {
    float: left;
    position: relative;
    /* height: 45px; */
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid rgba(34, 36, 38, .15);
    font-weight: bold;
    font-size: 14px;
    /* margin-bottom: 0 !important; */
}

.playerHeader_navbar ul {
    margin: 0;
    padding: .5em 0;
    list-style-type: none;
}

.playerHeader_navbar ul li {
    display: inline;
    padding: 7px 10px;
    border-radius: 5px;
}

.playerHeader_navbar ul li a {
    text-decoration: none;
    display: inline-block;
    padding: .2em .5em;
    color: #000;
}

.playerHeader_navbar ul li:hover {
    color: rgb(13, 71, 161);
    border-bottom: 4px solid rgb(13, 71, 161);
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.activePlayerPage {
    color: rgb(13, 71, 161);
    border-bottom: 4px solid rgb(13, 71, 161);
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.clanPage_titleWrapper {
    margin: 0 0 20px 15px !important;
}

.clanPage_title {
    font-size: 22px;
    font-family: 'Open Sans';
    font-weight: bold;
    margin: 0 0 25px 0 !important;
    text-align: center;
}

.clanPage_description {
    font-size: 12px;
    font-family: 'Open Sans';
    font-weight: bold;
    margin: 5px 0 0 0 !important;
}

.modal {
    z-index: 999999999 !important;
    border-radius: 10px;
}

.clanPage_modal {
    font-size: 0.8rem;
    font-family: 'Open Sans';
    margin: 5px 0 0 0 !important;
}

.clanPage_modal2 {
    font-size: 0.8rem;
    font-family: 'Open Sans';
    margin: 0 !important;
    position: relative;
    float: left;
}

.clanPage_modal3 {
    font-size: 0.8rem;
    font-family: 'Open Sans';
    margin: 0 0 15px 0 !important;
}

.modalLink {
    color: rgb(221, 0, 0) !important;
    font-weight: bold;
}

.modalLink:hover {
    color: rgb(255, 0, 0) !important;
    font-weight: bold;
}

.clanStatsImg {
    height: 25px;
    /* margin-bottom: 8px; */
}

.clanStatsImg2 {
    height: 33px;
}

.clanStatsImg3 {
    height: 18px;
    padding-left: 2px;
}

.clanStatsImg4 {
    height: 15px;
    padding-left: 2px;
}

.clanStatsImgFlag {
    height: 20px;
}

.socialIcons {
    height: 45px;
    margin-right: 10px;
    margin-bottom: 5px;
}

.socialIcons2 {
    height: 30px;
}

.tableBody {
    font-weight: bold;
}

.fixedTable {
    table-layout: fixed;
}

.responsiveTable2 {
    overflow-x: auto;
}

.clanTableWrapper {
    padding: 10px 0;
}

.tableHeaderRow {
    border-top: 1px solid rgba(34, 36, 38, .15);
    border-bottom: 1px solid rgba(34, 36, 38, .15) !important;
    background-color: #000000;
}

.tableHeaderRow_coc {
    border-top: 1px solid rgba(34, 36, 38, .15);
    border-bottom: 1px solid rgba(34, 36, 38, .15) !important;
    background-color: #cfa23b;
}

.tableHeader_clan {
    text-align: center;
    color: white !important;
    border-radius: 0 !important;
}

.tableHeader_clan_coc {
    text-align: center;
    color: black !important;
    border-radius: 0 !important;
}

.tableRow_clan {
    font-size: 100%;
}

.tableRow_clan2 {
    font-size: 100%;
}

.tableRow_clan3 {
    font-size: 100%;
}

.tableRow_clan_badge {
    max-width: 30px !important;
    vertical-align: middle;
    display: inline-block !important;
    padding-right: 5px;
}

#warDayWin_top {
    max-width: 22px !important;
    vertical-align: middle;
    display: inline-block !important;
    padding-right: 5px;
}

.tableRow_clan_badge2 {
    max-width: 36px !important;
    vertical-align: middle;
    display: inline-block !important;
    padding-right: 5px;
}

.tableRow_clan_badge3 {
    max-width: 18px !important;
    vertical-align: middle;
    display: inline-block !important;
    /* padding-right: 5px; */
}

.tableRow_clan_badge4 {
    max-width: 18px !important;
    vertical-align: middle;
    display: inline-block !important;
    padding-right: 3px;
}

.tableRow_clan_badge5 {
    max-width: 30px !important;
    vertical-align: middle;
    display: inline-block !important;
    /* padding-right: 5px; */
}

.tableRow_clan_cards1 {
    max-width: 25px !important;
    vertical-align: middle;
    display: inline-block !important;
    padding-right: 5px;
}

.tableRow_clan_cards2 {
    max-width: 25px !important;
    vertical-align: middle;
    display: inline-block !important;
    padding-left: 5px;
}

.cardsDonated {
    content: "\f062";
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    font-size: 5px;
    position: absolute;
    margin: 0;
}

.tableRow_currentWar {
    max-width: 30px !important;
    vertical-align: middle;
    display: inline-block !important;
    padding-left: 5px;
}

.tableRow_currentWar2 {
    max-width: 40px !important;
    vertical-align: middle;
    display: inline-block !important;
    padding-left: 5px;
}

.tableRow_currentWar3 {
    max-width: 30px !important;
    vertical-align: middle;
    display: inline-block !important;
    margin-left: 10px;
    margin-right: 5px;
}

.tableRow_currentWar4 {
    max-width: 30px !important;
    vertical-align: middle;
    display: inline-block !important;
    margin-left: 10px;
    margin-right: 5px;
}

.tableRow_warLog {
    max-width: 20px !important;
    vertical-align: middle;
    display: inline-block !important;
    padding-left: 5px;
}

.tableRow_fameRepair {
    max-width: 25px !important;
    vertical-align: middle;
    display: inline-block !important;
    padding-left: 5px;
}

.tableRow_war_badge {
    max-width: 45px !important;
    vertical-align: middle;
    display: inline-block;
    /* padding-right: 5px; */
}

.tableRow_war_badge2 {
    max-width: 45px !important;
    vertical-align: middle;
    display: inline-block !important;
    /* padding-right: 5px; */
}

.tableHeader_clanRatings {
    font-size: 90%;
    text-align: center;
    color: white !important;
    border-radius: 0 !important;
}

.tableHeader_clanRatings_coc {
    font-size: 90%;
    text-align: center;
    color: black !important;
    border-radius: 0 !important;
}

.tableHeader_clanRatings2 {
    font-size: 80%;
    text-align: center;
    background-color: #c0c0c0;
    border-radius: 0 !important;
}

.tableHeader_tracking_warStats {
    font-size: 70%;
    text-align: center;
    color: white !important;
    border-radius: 0 !important;
}

.tableHeader_playerProgress {
    font-size: 60%;
    text-align: center;
    color: white !important;
    border-radius: 0 !important;
}

.tableHeader_playerProgress2 {
    font-size: 90%;
    text-align: center;
    color: white !important;
    border-radius: 0 !important;
}

.tableRow_clanRatings {
    font-size: 85%;
}

.tableRow_clanRatings2 {
    font-size: 75%;
}

.tableRow_topPlayers {
    font-size: 100%;
}

.tableRow_playerProgress2 {
    font-size: 60%;
}

.tableRow_playerProgress2 td {
    border-radius: 0 !important;
}

.tableRow_playerProgress3 {
    font-size: 80%;
}

.tableRow_playerProgress3 td {
    padding: 8px 5px !important;
}

.tableData_lessPadding {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.tableData_lessPadding2 {
    padding: 5px 0 !important;
    /* border-left: 1px solid rgba(0,0,0,0.12); */
    /* border-right: 1px solid rgba(0,0,0,0.12); */
}

.tableData_raceStats {
    text-align: left !important;
    padding-left: 1%;
    width: 8%;
}

.tableData_raceStats3 {
    text-align: left !important;
    padding-left: 0.8%;
    width: 4%;
}

.clanAverage {
    font-weight: bold;
    background-color: rgba(34, 36, 38, 0.3);
    border-top: 1px solid black;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.borderLeft {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.borderLeft2 {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.borderLeft3 {
    border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.borderLeft4 {
    border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.clanRatingModalHeader {
    font-size: 28px;
    font-weight: bold;
}

.clanRatingModalText_header {
    margin-bottom: 5px;
    color: #000000 !important;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: underline;
}

.clanRatingModalText {
    margin-bottom: 15px;
    font-weight: bold;
}

.clanRatingModalText2 {
    margin-bottom: 15px;
}

th[data-sort] {
    cursor: pointer;
}

.arrow {
    font-size: 15px !important;
}

.win-green-1 {
    background-color: rgb(172, 212, 119);
}

.win-green-2 {
    background-color: rgba(187, 220, 144);
}

.win-green-3 {
    background-color: rgb(205, 229, 173);
}

.win-green-4 {
    background-color: rgb(209, 231, 179);
}

.win-green-5 {
    background-color: rgb(227, 241, 210);
}

.win-green-6 {
    background-color: rgb(247, 251, 243);
}

.win-red-1 {
    background-color: rgb(253, 230, 230);
}

.win-red-2 {
    background-color: rgb(240, 214, 214);
}

.win-red-3 {
    background-color: rgb(241, 204, 204);
}

.win-red-4 {
    background-color: rgb(235, 182, 182);
}

.win-red-5 {
    background-color: rgb(223, 157, 157);
}

.win-red-6 {
    background-color: rgb(221, 138, 138);
}

.maxThLevelHighlight {
    background-color: #0093f599;
}

.maxLevelHighlight {
    background-color: #e8c700ab;
}

.legend {
    display: inline-block;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 5px;
    margin-top: 10px;
}

.legend2 {
    display: inline-block;
    /* border: 1px solid rgb(0, 0, 0); */
    border-radius: 5px;
    margin-top: 10px;
}

.legend3 {
    display: inline-block;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 5px;
    margin: 10px 3px 0px 3px;
}

.wonAll {
    background-color: rgb(172, 212, 119);
    padding: 0.25rem 0.25rem;
}

.wonOne {
    background-color: rgb(227, 241, 210);
    padding: 0.25rem 0.25rem;
}

.lostAll {
    background-color: white;
    padding: 0.25rem 0.25rem;
}

.missedBattle {
    background-color: rgb(223, 157, 157);
    padding: 0.25rem 0.25rem;
}

.notInClan {
    background-color: rgb(241, 204, 204);
    padding: 0.25rem 0.25rem;
}

.missedCDBattle1 {
    padding: 0 0.25rem;
}

.missedCDBattle2 {
    padding: 0.25rem 0;
}

.trainingDay {
    background-color: rgb(93, 151, 101);
}

.purple-1 {
    background-color: rgb(208 181 251);
}

.purple-2 {
    background-color: rgb(165 134 213);
}

.purple-3 {
    background-color: rgb(125, 92, 177);
}

.purple-4 {
    background-color: rgb(100 48 181);
}

.perfectDay {
    background-color: #e8c700ab;
    padding: 0.25rem 0.25rem;
}

.noParticipation {
    background-color: rgb(253, 230, 230);
    padding: 0.25rem 0.25rem;
}

.decksNotUsed {
    color: red;
    padding: 0.25rem 0.25rem;
}

.seasonIdColor1 {
    background-color: rgb(165 134 213);
}

.seasonIdColor2 {
    background-color: rgb(125, 92, 177);
}

.seasonIdColor3 {
    background-color: rgb(100 48 181);
}

.seasonIdColor4 {
    background-color: rgb(75, 36, 139);
}

.seasonIdColor1_info {
    background-color: rgb(165 134 213);
    padding: 0.25rem 0.25rem;
    color: white;
    font-size: 0.8rem !important;
}

.seasonIdColor2_info {
    background-color: rgb(125, 92, 177);
    padding: 0.25rem 0.25rem;
    color: white;
    font-size: 0.8rem !important;
}

.seasonIdColor3_info {
    background-color: rgb(100 48 181);
    padding: 0.25rem 0.25rem;
    color: white;
    font-size: 0.8rem !important;
}

.seasonIdColor4_info {
    background-color: rgb(75, 36, 139);
    padding: 0.25rem 0.25rem;
    color: white;
    font-size: 0.8rem !important;
}

.expLevelImg {
    display: inline-block;
    font-style: normal;
    background: url(https://clashratings.com/img/ui/experience_level.png) top left;
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    line-height: 20px;
    font-family: 'supercell-magic';
    font-size: 8px;
    font-weight: normal !important;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 1px 2px #222222;
    margin-right: 5px;
}

.expLevelImg_player {
    display: inline-block;
    font-style: normal;
    background: url(https://clashratings.com/img/ui/experience_level.png) top left;
    width: 28px;
    height: 28px;
    background-size: 28px 28px;
    line-height: 28px;
    font-family: 'supercell-magic';
    font-size: 10px;
    font-weight: normal !important;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 1px 2px #222222;
    margin-right: 5px;
}

.expLevelImg_playerWrapper {
    float: left;
    position: relative;
    margin: 0 !important;
    line-height: 10% !important;
}

.expLevelImg2 {
    display: inline-block;
    font-style: normal;
    background: url(https://clashratings.com/img/ui/experience_level.png) top left;
    width: 28px;
    height: 28px;
    background-size: 28px 28px;
    line-height: 28px;
    font-family: 'supercell-magic';
    font-size: 8px;
    font-weight: normal !important;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 1px 2px #222222;
    margin-right: 5px;
}

.playerCWRImg {
    display: inline-block;
    font-style: normal;
    background: url(https://clashratings.com/img/ui/lvl-shield.png) top left;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    line-height: 24px;
    font-family: 'supercell-magic';
    font-size: 10px;
    font-weight: normal !important;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 1px 2px #222222;
    letter-spacing: 1px;
    /* margin-right: 5px; */
}

.playerCWRImg_wrapper {
    float: left;
    position: relative;
    margin: 0 !important;
    line-height: 10% !important;
    font-size: 16px;
    font-weight: bold;
}

.playerCWRImg_wrapper2 {
    /* float: left; */
    position: relative;
    margin: 0 !important;
    line-height: 10% !important;
    font-size: 16px;
    font-weight: bold;
}

.playerProfileLink {
    color: #000000 !important;
    font-weight: bold;
}

.playerProfileLink:hover {
    color: rgb(26, 106, 226) !important;
    font-weight: bold;
}

.playerProfileLink_coc {
    color: #cfa23b !important;
    font-weight: bold;
}

.playerProfileLink_coc:hover {
    color: #B71C1C !important;
    font-weight: bold;
}

.playerProfileLink_coc2 {
    color: #B71C1C !important;
    font-weight: bold;
}

.playerProfileLink_coc2:hover {
    color: #cfa23b !important;
    font-weight: bold;
}

.armyLink {
    color: #000000 !important;
    font-weight: bold;
}

.armyLink:hover {
    color: rgb(26, 106, 226) !important;
    font-weight: bold;
}

.armyLink3 {
    color: #039be5 !important;
    font-weight: bold;
}

.armyLink3:hover {
    color: #000000 !important;
    font-weight: bold;
}

.coc_armyLink {
    color: #cfa23b !important;
    font-weight: bold;
}

.coc_armyLink:hover {
    color: #B71C1C !important;
    font-weight: bold;
}

.coc_armyLink2 {
    color: #e5c903 !important;
    font-weight: bold;
}

.coc_armyLink2:hover {
    color: #af9b05 !important;
    font-weight: bold;
}

.coc_armyLink3 {
    color: #B71C1C !important;
    font-weight: bold;
}

.coc_armyLink3:hover {
    color: #cfa23b !important;
    font-weight: bold;
}

.websiteLink_black {
    color: #000000 !important;
    font-weight: bold;
}

.websiteLink_black:hover {
    color: rgb(102, 102, 102) !important;
    font-weight: bold;
}

.playerProfileLink2 {
    color: black !important;
}

.discordBanner {
    padding: 10px 0;
}

.discordLink {
    color: #ffffff !important;
    font-weight: bold;
}

.discordLink:hover {
    color: rgb(209, 209, 209) !important;
    font-weight: bold;
}

.tableLastSeen {
    font-size: 10px;
    font-weight: normal;
    margin: 0 !important;
    line-height: 1;
}

.tableLastSeen2 {
    font-size: 10px;
    font-weight: normal;
    margin: 0 !important;
    line-height: 1;
}

.tableLastSeen3 {
    font-size: 12px;
    font-weight: normal;
    margin: 0 !important;
    line-height: 1;
}

.tableLastSeen4 {
    font-size: 85%;
    font-weight: normal;
    margin: 0 !important;
    line-height: 1;
}

.tableLastSeen5 {
    font-size: 10px;
    font-weight: normal;
    margin: 0 !important;
    line-height: 1;
    padding-top: 5px;
}

.tableLastSeen6 {
    font-size: 12px;
    font-weight: normal;
    margin: 0 !important;
    font-weight: bold;
    line-height: 1;
    padding-top: 5px;
}

.borderRadius1 {
    border-radius: 2px;
    padding: 2px !important;
}

.paddingTop {
    padding-top: 5px;
}

.paddingBottom {
    padding-bottom: 10px !important;
}

.paddingBottom2 {
    padding-bottom: .6rem !important;
}

.tablePointsBreakdown {
    font-size: 11px;
    font-weight: normal;
    margin: 0 !important;
    color: rgb(26, 106, 226);
}

.pointsBreakdown_description {
    font-size: 10px;
}

.tableMiaAvg {
    font-size: 10px;
    font-weight: normal;
    margin: 0 !important;
    /* color: red; */
}

.warBattlesOutcome {
    height: 35px;
}

.cdBattlesNotComplete {
    background-color: rgb(235, 182, 182);
}

.currentWarPlayerName {
    padding-left: 7.3%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.currentWarPlayerName2 {
    padding-left: 5%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.currentWarPlayerName3 {
    padding-left: 1%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.currentWarPlayerName4 {
    padding-left: 4%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.clanPlayerName {
    padding-left: 3%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.currentWarClanName {
    padding-left: 35px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.raceStatsPlayerName {
    padding-left: 2%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.clanRoleTime {
    position: relative;
    padding-left: 2%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.clanWarStats_emblem {
    height: 30px;
    display: block !important;
    margin: 0 auto !important;
}

.clanWarStats_emblem2 {
    height: 25px;
    display: block !important;
    margin: 0 auto !important;
}

.clanWarStats_outcome {
    height: 35px;
}

.clanWarStats_outcome2 {
    height: 25px;
}

.clanWarStats_outcome3 {
    height: 22px;
}

.playerStarLevel {
    width: 10%;
    vertical-align: middle;
}

.playerStarLevel2 {
    width: 10%;
    margin-left: 5px;
    vertical-align: middle;
}

.cdStats {
    font-size: 10px;
    margin: 0 !important;
}

.missedCDBattles {
    /* background-color: rgb(255, 0, 0); */
    font-weight: bold;
    color: red;
}

.switch label input[type=checkbox]:checked+.lever {
    background-color: rgba(13, 71, 161, 0.75) !important;
}

.switch label input[type=checkbox]:checked+.lever:after {
    background-color: rgb(13, 71, 161);
}

.switch label .lever:before {
    background-color: rgba(38, 166, 154, 0.15);
}

.missingMembers {
    background-color: rgb(235, 182, 182);
}

.chest {
    width: 70%;
}

.chestWrapper {
    display: inline-block !important;
    position: relative;
    margin: 0.25em !important;
    padding: 0.2em 0 0.2em 0;
    text-align: center;
    width: 11%;
}

.chestPadding {
    padding-bottom: 10px !important;
}

.currentDeck {
    /* height: 150px; */
    width: 85%;
    margin: 0 5px;
}

.currentDeck3 {
    width: 12.5%;
    height: auto;
    margin: 0 5px;
}

.currentDeck4 {
    width: 20%;
    height: auto;
    margin: 0 5px;
}

.currentDeckRow {
    display: inline-block;
}

.currentDeck_starLevel {
    height: 20px;
    /* margin: 0 5px; */
}

.currentDeck2 {
    height: 80px;
}

.currentDeck2_alignment {
    margin: 0 auto !important;
}

.currentDeck_cardLevels {
    margin: -5px 0 0 0 !important;
}

.currentDeck_cardTotal {
    margin: 0 0 5px 0 !important;
}

.currentDeck_cards {
    margin: 0.25em !important;
    display: inline-block !important;
    padding: 0.2em 0 0.2em 0;
    text-align: center;
    width: 11.5%;
    background-size: contain;
    position: relative;
    vertical-align: top;
}

.currentDeck_progressBar {
    margin: -3px 0 3px 0 !important;
}

.playerCards_cards {
    margin: 0.25em !important;
    display: inline-block !important;
    padding: 0.2em 0 0.2em 0;
    text-align: center;
    width: 9.4%;
    background-size: contain;
    position: relative;
    vertical-align: top;
}

.playerCards_cardLevels {
    margin: 0 0 2px 0 !important;
    font-size: 0.9em;
}

.playerCards_cardTotal {
    margin: 0 0 5px 0 !important;
    font-size: 0.9em;
}

.playerCards_cardsImg {
    width: 85%;
    margin: 0 5px;
}

.playerCards_cardsImg2 {
    width: 85%;
    margin: 0 5px;
    opacity: 50%;
}

.playerCards_cardsImg_mastery {
    width: 85%;
    margin: 0 5px;
    margin-bottom: -20px;
}

.playerCards_cardsImg_mastery2 {
    width: 85%;
    margin: 0 5px;
    margin-bottom: -20px;
    opacity: 50%;
}

.playerCards_notGold {
    padding-bottom: 2px;
}

.playerCards_starLevel {
    width: 10%;
    vertical-align: middle;
    margin-bottom: 1px;
}

.playerCards_starLevel2 {
    width: 10%;
    margin-left: 5px;
    vertical-align: middle;
    margin-bottom: 1px;
}

.playerCards_found {
    font-size: 1.25rem;
    font-weight: bold;
    /* font-family: 'supercell-magic'; */
    margin: -15px 0 15px 0 !important;
}

.deckStats_cards {
    margin: 0.25em !important;
    display: inline-block !important;
    padding: 0.2em 0 0.2em 0;
    text-align: center;
    width: 10%;
    background-size: contain;
    position: relative;
    vertical-align: top;
}

.starFade {
    background-color: rgba(0, 0, 0, 0.3);
}

.starLevelPreview {
    position: relative;
    /* margin: 0 10px; */
    /* max-width: 19rem !important; */
}

.cardHeader_img_wrapper2 {
    position: relative;
}

.cardHeader_img {
    max-width: 15rem !important;
    float: left;
    position: relative;
    margin-top: 30px;
    margin-right: 10px;
    margin-left: 10px;
}

.cardHeader_releaseDate {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 3px;
}

.cardHeader_elixir {
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(https://clashratings.com/img/cr-cards/elixir.png);
    width: 4rem;
    height: 4rem;
    color: #fff;
    font-size: 2rem;
    font-family: 'supercell-magic';
    line-height: 60px;
    padding: .1rem .5rem .2rem 0;
    text-align: center;
    vertical-align: middle;
    text-shadow: 0 2px 4px #000;
    font-weight: 700;
    position: absolute;
    top: 10px;
    left: 0;
}

.cardHeader_name {
    margin: 50px 0 25px 0;
    font-family: 'supercell-magic';
    font-size: 2.5rem;
    text-overflow: ellipsis;
    overflow: hidden;
    /* padding-left: 10px; */
}

.cardHeader_type {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 10px;
}

.cardHeader_description {
    clear: both;
    position: relative;
    vertical-align: middle;
    margin-left: 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    width: 55%;
    line-height: 1.5;
    padding-top: 10px;
    font-style: italic;
}

.coc_armyHeader_name {
    margin: 45px 0 15px 0;
    font-family: 'supercell-magic';
    font-size: 2.5rem;
    text-overflow: ellipsis;
    overflow: hidden;
    /* padding-left: 10px; */
}

.coc_armyHeader_img {
    max-width: 214px !important;
    float: left;
    position: relative;
    margin-top: 30px;
    margin-right: 20px;
    margin-left: 20px;
    /* border: 3px solid black; */
    border-radius: 20px;
    background-color: wheat;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);

}

.coc_armyLevelPreview_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 0 auto;
    /* max-width: 57%; */
}

.coc_armyLevelPreview_div {
    /* flex: 1 0 calc(25% - 20px); */
    margin: 10px 10px 20px 10px;
    height: 100px;
}

.coc_armyLevelPreview_div2 {
    /* flex: 1 0 calc(25% - 20px); */
    margin: 10px 10px 20px 10px;
    height: 150px;
}

.divEight {
    flex: 1 0 calc(25% - 20px);
}

.divSix {
    flex: 1 0 calc(33% - 20px);
}

.divFour {
    flex: 1 0 calc(25% - 20px);
}

.mainHeader_navbarWrapper {
    height: 81px !important;
    background-color: #000000 !important;
}

.mainHeader_navbarWrapper ul li {
    float: none !important;
}

.mainHeader_navbar_textColor {
    color: #63FE00 !important;
    font-weight: bold;
}

.mainHeader_navbar {
    float: right;
    /* display: inline-block; */
    /* position: relative; */
    /* height: 45px; */
    /* width: 100%; */
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid rgba(34, 36, 38, .15);
    /* font-weight: bold; */
    font-size: 14px;
    /* margin-bottom: 0 !important; */
    /* z-index: 9999; */
}

.mainHeader_navbar ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mainHeader_navbar ul li {
    display: inline-block;
    /* padding: 7px 10px; */
    border-radius: 5px;
}

.mainHeader_navbar ul li a {
    text-decoration: none;
    display: block;
    /* padding: .75rem 1.25rem; */
    /* padding: .2em .5em;  */
    color: rgb(255, 255, 255);
}

.mainHeader_navbar ul li:hover {
    color: rgb(13, 71, 161);
    /* border-bottom: 4px solid rgb(13, 71, 161); */
    /* border-radius: 5px; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.mainHeader_navbar .mainHeader_navbar_subMenu1 {
    display: none;
    position: absolute;
    transition: all 1s ease;
    /* margin-top: .25rem !important; */
    /* margin-left: -10px; */
    background-color: white;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

/* .mainHeader_navbar ul li ul a {
    display: block;
} */

.mainHeader_navbar ul li:hover .mainHeader_navbar_subMenu1 {
    display: block;
    position: absolute;
    z-index: 9998;
}

.mainHeader_navbar_subMenu1 li {
    position: relative;
}

.mainHeader_navbar ul li:hover .mainHeader_navbar_subMenu2 {
    display: none;
}

.mainHeader_navbar ul li .mainHeader_navbar_subMenu1 li:hover .mainHeader_navbar_subMenu2 {
    position: absolute;
    display: block;
    /* top: 0; */
    /* left: 100%; */
    z-index: 9998;
}

.mainHeader_navbar_subMenu2 {
    position: absolute;
    transition: all 1s ease;
    /* margin-top: .25rem !important; */
    /* margin-left: -10px; */
    background-color: white;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    top: 0;
    right: 0;
    transform: translate(100%, 0);
}

.mainHeader_navbar ul li:hover .mainHeader_navbar_subMenu3 {
    display: none;
}

.mainHeader_navbar ul li .mainHeader_navbar_subMenu2 li:hover .mainHeader_navbar_subMenu3 {
    position: absolute;
    display: block;
    /* top: 0; */
    /* left: 100%; */
    z-index: 9998;
}

.mainHeader_navbar_subMenu3 {
    position: absolute;
    transition: all 1s ease;
    /* margin-top: .25rem !important; */
    /* margin-left: -10px; */
    background-color: white;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    top: 0;
    right: 0;
    transform: translate(100%, 0);
}

.mainHeader_navbar ul li ul li {
    display: block;
    /* margin-top: 10px;
    margin-bottom: 10px; */
    width: 190px;
    /* padding: 10px 0; */
    /* border-top: 4px solid white;
    border-bottom: 4px solid white; */
    border-radius: 0 !important;
}

.mainHeader_navbar ul li ul li a {
    display: block;
    /* margin-top: 10px;
    margin-bottom: 10px; */
    width: 190px;
    /* padding: 1rem 1.25rem; */
    /* border-top: 4px solid white;
    border-bottom: 4px solid white; */
    color: rgb(0, 0, 0);
}

/* .mainHeader_navbar ul li ul li:hover {
    color: rgb(13, 71, 161) !important;
    background-color: gainsboro;
    /* border-top: 4px solid rgb(221, 0, 0); */
/* border-bottom: 1px solid gainsboro; 
    border-radius: 0 !important;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2); 
} */

.cardHeader_viewBy {
    color: rgb(13, 71, 161);
    border-bottom: 4px solid rgb(13, 71, 161) !important;
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.cardStats_emblem {
    height: 30px;
    display: block !important;
    margin: 0 auto !important;
}

.cardStats_emblem_coc {
    height: 30px;
    display: block;
    margin: 0 auto !important;
}

.cardStats_title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.cardStats_title2 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
}

.crElixir {
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(https://clashratings.com/img/cr-cards/elixir.png);
    width: 1.6rem;
    height: 1.6rem;
    color: #fff;
    font-size: 0.75rem;
    font-family: 'supercell-magic';
    line-height: 22px;
    padding: .1rem .2rem .2rem 0;
    text-align: center;
    vertical-align: middle;
    text-shadow: 0 1px 3px #000;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}

.crElixir2 {
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(https://clashratings.com/img/cr-cards/elixir.png);
    width: 1.6rem;
    height: 1.6rem;
    color: #fff;
    font-size: 0.75rem;
    font-family: 'supercell-magic';
    line-height: 22px;
    padding: .1rem .2rem .2rem 0;
    text-align: center;
    vertical-align: middle;
    text-shadow: 0 1px 3px #000;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 70%;
}

.crElixir3 {
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(https://clashratings.com/img/cr-cards/elixir.png);
    width: 2rem;
    height: 2rem;
    color: #fff;
    font-size: 1rem;
    font-family: 'supercell-magic';
    line-height: 28px;
    padding: .1rem .3rem .2rem 0;
    text-align: center;
    vertical-align: middle;
    text-shadow: 0 1px 3px #000;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 3px;
}

.crElixir4 {
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(https://clashratings.com/img/cr-cards/elixir.png);
    width: 2rem;
    height: 2rem;
    color: #fff;
    font-size: 1rem;
    font-family: 'supercell-magic';
    line-height: 28px;
    padding: .1rem .3rem .2rem 0;
    text-align: center;
    vertical-align: middle;
    text-shadow: 0 1px 3px #000;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 3px;
}

.chestCount {
    /* background-size: contain;
    background-repeat: no-repeat; */
    /* background-image: url(https://clashratings.com/img/cr-cards/elixir.png); */
    /* width: 2.5rem;
    height: 2.5rem; */
    min-width: 2.3rem;
    min-height: 2.3rem;
    color: #fff;
    font-size: 1rem;
    /* font-family: 'supercell-magic'; */
    /* line-height: 32px; */
    padding: 0.1rem 0.5rem 0.1rem 0.5rem;
    text-align: center;
    /* vertical-align: middle; */
    /* text-shadow: 0 1px 3px #000; */
    font-weight: 700;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0050cd;
    border-radius: 18px;
    border: 1px solid rgb(96 158 255 / 50%);
}

.playerRank1 {
    background-size: contain;
    background-repeat: no-repeat;
    /* background-image: url(https://clashratings.com/img/cr-cards/elixir.png); */
    width: 100%;
    /* height: 2rem; */
    color: #fff;
    font-size: 1.3rem;
    font-family: 'supercell-magic';
    /* line-height: 28px; */
    /* padding: .1rem .3rem .2rem 0; */
    text-align: center;
    vertical-align: middle;
    text-shadow: 0 2px 3px #000;
    font-weight: 700;
    position: absolute;
    top: 28px;
    /* left: 42.5px; */
    padding-left: 0.85rem;
    padding-right: 1rem;
}

.playerCards_select {
    display: inline-block !important;
    width: 20% !important;
    vertical-align: middle;
    font-size: 100%;
    font-family: 'Open Sans';
    background-color: rgb(242, 242, 242);
    border: none !important;
}

.playerCards_select:focus {
    border: 2px solid rgb(16, 71, 161) !important;
    box-shadow: none !important;
    outline: none !important;
}

.playerCards_sortBy {
    float: left;
    margin: 10px 10px 0 10px !important;
    vertical-align: middle;
}

.playerCards_progressBar {
    padding-top: 7px;
    padding-bottom: 6px;
}

.switch label .lever {
    margin: 10px 16px 10px 0 !important;
}

.redX {
    width: 150px;
}

.autocomplete {
    float: left;
    position: absolute;
    list-style: none;
    padding: 0px;
    /* border: 1px solid black; */
    margin-top: 0px;
    background: white;
    width: 18em;
    margin-left: 90px;
    min-width: 247.5px;
    max-width: 1280px;
    z-index: 999999999;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    /* border-radius: 5px; */
}

.autocomplete2 {
    float: left;
    position: absolute;
    list-style: none;
    padding: 0px;
    /* border: 1px solid black; */
    margin-top: 38px;
    background: white;
    width: 18em;
    margin-left: 0;
    min-width: 247.5px;
    max-width: 1280px;
    z-index: 10000002;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    /* border-radius: 5px; */
}

.autocompleteUL {
    margin: 0 !important;
}

.autocompleteLI {
    padding: 10px;
    border-bottom: 1px solid rgba(34, 36, 38, .15);
}

.autocompleteLI:hover {
    background-color: #f5f5f5;
}

.autocompleteLI2 {
    padding: 10px;
    height: 60px;
    border-bottom: 1px solid rgba(34, 36, 38, .15);
}

.autocompleteLI2:hover {
    background-color: #f5f5f5;
}

.autocompleteLI3 {
    padding: 10px;
    height: 70px;
    border-bottom: 1px solid rgba(34, 36, 38, .15);
}

.autocompleteLI3:hover {
    background-color: #f5f5f5;
}

.autocompleteResults {
    color: #000000 !important;
    font-weight: bold;
    cursor: pointer;
}

.autocompleteResults:hover {
    color: rgb(26, 106, 226) !important;
    font-weight: bold;
}

.autocompleteResults_coc {
    color: #cfa23b !important;
    font-weight: bold;
    cursor: pointer;
}

.autocompleteResults_coc:hover {
    color: #B71C1C !important;
    font-weight: bold;
}

.autocompleteTag {
    color: black;
    font-weight: normal;
    font-size: 12px;
    margin: 0 !important;
}

.autocompleteTag2 {
    color: black;
    font-weight: normal;
    font-size: 12px;
    margin: 0 !important;
    position: absolute;
}

.autocompleteTag3 {
    color: black;
    font-weight: normal;
    font-size: 12px;
    margin: 0 !important;
    margin-top: 15px !important;
    position: absolute;
}

.autocompleteImg {
    width: 3rem;
    float: left;
    margin: 3px 10px 0 5px;
}

.autocompleteImg2 {
    width: 5rem;
    float: right;
    margin: 3px 10px 0 5px;
}

.autocompleteImg_wrapper {
    vertical-align: middle;
}

.mainPage_gameWrapper {
    /* border: 1px solid #000000; */
    /* box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2); */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: white;
    border-radius: 5px;
    height: 100%;
    width: calc(50% - 2em) !important;
    margin-left: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 2em;
    padding: 5px !important;
}

.clanSearchWrapper {
    /* border: 1px solid #000000; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 5px;
    height: 230px;
    width: calc(33.333% - 2em) !important;
    margin-left: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 2em;
    padding: 0 5px !important;
}

.clanSearchWrapper2 {
    /* border: 1px solid #000000; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 5px;
    height: 100px;
    width: calc(25% - 2em) !important;
    margin-left: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 2em;
    padding: 5px !important;
}

.clanSearchWrapper3 {
    /* border: 1px solid #000000; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 5px;
    height: 130px;
    width: calc(25% - 2em) !important;
    margin-left: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 2em;
    padding: 5px !important;
}

.clanSearchWrapper4 {
    /* border: 1px solid #000000; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 5px;
    height: 175px;
    width: calc(25% - 2em) !important;
    margin-left: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 2em;
    padding: 5px !important;
}

.clanSearchWrapper5 {
    /* border: 1px solid #000000; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 5px;
    height: 220px;
    width: calc(25% - 2em) !important;
    margin-left: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 2em;
    padding: 5px !important;
}

.playerBattle_container {
    clear: both;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

.playerBattle_wrapper {
    /* border: 1px solid #000000; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 5px;
    height: 100%;
    width: calc(50% - 4em) !important;
    margin-left: 2em !important;
    margin-right: 2em !important;
    margin-bottom: 2em;
    padding: 5px !important;
}

.playerBattle_warOutline {
    border: 1px solid #b700ff;
}

.playerBattle_warBackground {
    background-color: #b700ff;
}

.playerBattle_victoryOutline {
    border: 1px solid #686868;
}

.playerBattle_victoryBackground {
    background-color: #686868;
}

.playerBattle_defeatOutline {
    border: 1px solid #686868;
}

.playerBattle_defeatBackground {
    background-color: #686868;
}

.playerBattle_drawOutline {
    border: 1px solid #686868;
}

.playerBattle_drawBackground {
    background-color: #686868;
}

.playerBattle_info2 {
    position: relative;
    margin: -5px -5px 0 -5px;
    padding: 5px;
    font-family: 'supercell-magic';
    color: white;
    text-shadow: 1px 2px black;
    /* background-color: #b157d4; */
    font-size: 1.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.3) inset;
}

.playerBattle_outcome {
    float: left;
    position: absolute;
    margin: 0;
    padding-left: 5px;
    margin-top: -3px;
}

.playerBattle_emblem {
    position: absolute;
    left: 93%;
    margin: 0;
    margin-top: -7px;
}

.playerBattle_battleBadge {
    max-height: 32px !important;
    position: relative;
    margin: 5px 0;
}

.playerBattle_copyDeck {
    position: relative;
    left: 40%;
    margin: 0;
    margin-top: 0;
    margin-bottom: 10px;
}

.playerBattle_copyDeck2 {
    position: relative;
    left: 30%;
    margin: 0;
    margin-top: 0;
    margin-bottom: 10px;
}

.currentDeck_copyDeck2 {
    position: relative;
    /* left: 42%; */
    float: right;
    margin: 0;
    margin-top: 0;
    margin-right: 40px;
    margin-bottom: 10px;
}

.playerBattle_copyDeckImg {
    max-height: 28px !important;
    position: relative;
    margin: 0 0 5px 0;
}

.currentDeck_copyDeckImg {
    max-height: 32px !important;
    position: relative;
    margin: 0 0 5px 0;
}

.playerBattle_score {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 3px 0;
    font-weight: bold;
    font-size: 16px;
}

.playerBattle_score2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 3px 0;
    font-weight: bold;
    font-size: 12px;
}

.playerBattle_score3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 3px 0;
    padding: 13px;
    font-weight: bold;
    font-size: 16px;
}

.playerBattle_type {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0 5px 0;
    font-family: 'supercell-magic';
    font-weight: bold;
    font-size: 20px;
}

.playerBattle_challengeWins {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -5px 0 3px 0;
    font-family: 'Open Sans';
    font-weight: bold;
    font-size: 20px;
}

.playerBattle_vs {
    position: relative;
    display: inline-block;
    width: 100%;
    /* margin: 8px 0; */
}

.playerBattle_vsCaption {
    color: #000000;
    background: #fff;
    /* position: absolute; */
    /* width: 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'supercell-magic';
    font-size: 1.5rem;
}

.playerBattle_battleCaption {
    color: #464646;
    background: #fff;
    /* position: absolute; */
    /* width: 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'supercell-magic';
    font-size: 1rem;
    margin-top: 10px;
}

.playerBattle_crownBlue {
    max-width: 32px;
    margin-right: -11px;
    z-index: 10;
}

.playerBattle_crownRed {
    max-width: 32px;
    margin-left: -11px;
    z-index: 10;
}

.playerBattle_trophyBlue {
    max-width: 20px;
    max-height: 20px;
    margin-right: 5px;
}

.playerBattle_trophyRed {
    max-width: 20px;
    max-height: 20px;
    margin-left: 5px;
}

.playerBattle_player {
    float: left !important;
    width: 50%;
    border-right: 1px solid lightgrey;
    text-align: center;
}

.playerBattle_playerName {
    float: left !important;
    margin: 0 0 5px 10px !important;
    color: #000000 !important;
    font-weight: bold;
    margin-top: 16px !important;
}

.playerBattle_playerName2 {
    clear: both;
    float: left !important;
    margin: 0 0 5px 10px !important;
    color: #000000 !important;
    font-weight: bold;
    /* margin-top: 8px !important; */
}

.playerBattle_playerName:hover {
    cursor: pointer;
    color: rgb(26, 106, 226) !important;
}

.playerBattle_playerSide {
    clear: both;
    float: left !important;
    margin: 0 0 5px 10px !important;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 100%;
    font-family: 'supercell-magic';
    /* text-shadow: 1px 2px 1px #000; */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.playerBattle_playerClan {
    clear: both;
    float: left !important;
    margin: 0 0 5px 10px !important;
    color: black;
    font-size: 12px;
    font-weight: bold;
    line-height: 100%;
}

.playerBattle_playerClan:hover {
    cursor: pointer;
    color: rgb(105, 105, 105) !important;
}

.playerBattle_playerTrophy {
    clear: both;
    display: flex;
    float: left;
    justify-content: center;
    margin: 0 0 3px 10px;
    font-weight: bold;
    font-size: 12px;
}

.playerBattle_elixir {
    clear: both;
    display: flex;
    float: left;
    justify-content: center;
    margin: 0 0 3px 10px;
    font-weight: bold;
    font-size: 14px;
}

.playerBattle_elixirImg {
    max-width: 25px;
    max-height: 25px;
    margin-right: 5px;
}

.currentDeck_elixir {
    clear: both;
    display: flex;
    float: left;
    justify-content: center;
    margin: 2px 0 3px 40px;
    font-weight: bold;
    font-size: 20px;
}

.currentDeck_elixirImg {
    max-width: 30px;
    max-height: 30px;
    margin-right: 5px;
}

.playerBattle_opponent {
    float: right !important;
    width: 50%;
    text-align: center;
}

.playerBattle_opponentName {
    float: right !important;
    margin: 0 10px 5px 0 !important;
    color: rgb(209, 29, 29) !important;
    font-weight: bold;
    margin-top: 16px !important;
}

.playerBattle_opponentName2 {
    clear: both;
    float: right !important;
    margin: 0 10px 5px 0 !important;
    color: rgb(209, 29, 29) !important;
    font-weight: bold;
    /* margin-top: 8px !important; */
}

.playerBattle_opponentName:hover {
    cursor: pointer;
    color: rgb(240, 4, 4) !important;
}

.playerBattle_opponentSide {
    clear: both;
    float: right !important;
    margin: 0 10px 5px 0 !important;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 100%;
    font-family: 'supercell-magic';
    /* text-shadow: 1px 2px 1px #000; */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.playerBattle_opponentClan {
    clear: both;
    float: right !important;
    margin: 0 10px 5px 0 !important;
    color: black;
    font-size: 12px;
    font-weight: bold;
    line-height: 100%;
}

.playerBattle_opponentClan:hover {
    cursor: pointer;
    color: rgb(105, 105, 105) !important;
}

.playerBattle_opponentTrophy {
    clear: both;
    display: flex;
    float: right;
    justify-content: center;
    margin: 0 10px 3px 0;
    font-weight: bold;
    font-size: 12px;
}

.playerBattle_cards {
    margin: 0.25em !important;
    display: inline-block !important;
    padding: 0.2em 0 0.2em 0;
    text-align: center;
    width: 22%;
    background-size: contain;
    position: relative;
    vertical-align: top;
}

.playerBattle_cardsImg {
    width: 100%;
    margin: 0;
}

.playerBattle_boatBattleShields {
    margin: 1.6em !important;
    /* margin-top: 0 !important; */
    display: inline-block !important;
    padding: 0.2em 0 0.2em 0;
    text-align: center;
    width: 30%;
    background-size: contain;
    position: relative;
    vertical-align: top;
}

.playerBattle_boatBattleShieldsTitle {
    clear: both;
    /* float: left !important; */
    margin: 0 0 5px 0 !important;
    color: white;
    font-family: 'supercell-magic';
    font-size: 12px;
    font-weight: bold;
    line-height: 120%;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.playerBattle_boatBattleShieldsImg {
    width: 100%;
    margin: 0;
}

.playerBattle_boatBattleShieldsNumber {
    background-size: contain;
    background-repeat: no-repeat;
    /* background-image: url(https://clashratings.com/img/cr-cards/elixir.png); */
    width: 100%;
    /* height: 2rem; */
    color: #fff;
    font-size: 3rem;
    font-family: 'supercell-magic';
    /* line-height: 28px; */
    /* padding: .1rem .3rem .2rem 0; */
    text-align: center;
    vertical-align: middle;
    text-shadow: 0 2px 3px #000;
    font-weight: 700;
    position: absolute;
    top: 55px;
    /* left: 42.5px; */
    padding-left: 0.9rem;
    padding-right: 1rem;
}

.playerBattle_playerCardsWrapper {
    float: left;
}

.playerBattle_opponentCardsWrapper {
    float: right;
}

.playerBattle_cardLevels {
    margin: 0 0 2px 0 !important;
    font-size: 0.9em;

}

.playerBattle_cardLevels::before {
    content: "Level ";

}

.playerBattle_battleTime {
    position: relative;
}

.playerBattle_timeTrophyWrapper {
    clear: both;
    position: relative;

}

.playerBattle_battleTime {
    position: relative;
}

.playerBattle_trophyChange {
    position: absolute;
    left: 90%;
}

.playerBattle_filterWrapper {
    float: left;
    padding: 1.3em 1.3em 1.3em 1.3em !important;
    vertical-align: middle;
    /* text-align: center; */
    width: 100%;
}

.playerBattle_filterBy {
    float: left;
    margin: 10px 10px 0 10px !important;
    vertical-align: middle;
    font-size: 120%;
}

.playerBattle_select {
    display: inline-block !important;
    width: 47.5% !important;
    vertical-align: middle;
    font-size: 120%;
    font-weight: bold;
    font-family: 'Open Sans';
    background-color: rgb(242, 242, 242);
    border: none !important;
}

.playerBattle_select:focus {
    border: 2px solid rgb(16, 71, 161) !important;
    box-shadow: none !important;
    outline: none !important;
}

.playerBattle_select2 {
    display: inline-block !important;
    width: 47.5% !important;
    vertical-align: middle;
    font-size: 120%;
    font-weight: bold;
    font-family: 'Open Sans';
    background-color: rgb(242, 242, 242);
    border: none !important;
    margin-left: 4.5%;
}

.playerBattle_select2:focus {
    border: 2px solid rgb(16, 71, 161) !important;
    box-shadow: none !important;
    outline: none !important;
}

.popularDecks_select {
    display: inline-block !important;
    width: 33% !important;
    vertical-align: middle;
    font-size: 120%;
    font-weight: bold;
    font-family: 'Open Sans';
    background-color: rgb(242, 242, 242);
    border: none !important;
}

.popularDecks_select:focus {
    border: 2px solid rgb(16, 71, 161) !important;
    box-shadow: none !important;
    outline: none !important;
}

.locationId_select {
    display: inline-block !important;
    /* width: 47.5% !important; */
    vertical-align: middle;
    font-size: 110%;
    font-family: 'Open Sans';
    background-color: rgb(242, 242, 242);
    border: none !important;
    border-radius: 5px;
    height: 40px;
}

/* .locationId_select select:invalid, select option[value=""] {
    color: gray;
} */

.locationId_select select,
select option {
    color: black;
}

/* .locationId_select option {
    color: black;
} */

.locationId_select:focus {
    /* border: 2px solid rgb(16, 71, 161) !important; */
    box-shadow: none !important;
    outline: none !important;
}

/* .clanSearchWrapper:hover {
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.3), 0 5px 3px -2px rgba(0,0,0,0.3), 0 3px 7px 0 rgba(0,0,0,0.3);
} */

.trackingButtonWrapper {
    /* border: 1px solid #000000; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 5px;
    border-bottom: 4px solid rgba(255, 255, 255, 0);
    height: 80px;
    width: calc(33% - 2em) !important;
    margin-left: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 2em;
    padding: 0 5px !important;
    /* vertical-align: middle; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.trackingButtonWrapper:hover {
    color: rgb(13, 71, 161);
    border-bottom: 4px solid rgb(13, 71, 161);
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.trackingButtonWrapper2 {
    /* border: 1px solid #000000; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 5px;
    border-bottom: 4px solid rgba(255, 255, 255, 0);
    height: 80px;
    width: calc(33.33% - 2em) !important;
    margin-left: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 2em;
    padding: 0 5px !important;
    /* vertical-align: middle; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.trackingButtonWrapper2:hover {
    color: rgb(13, 71, 161);
    border-bottom: 4px solid rgb(13, 71, 161);
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.clanRecruitmentWrapper {
    /* border: 1px solid #000000; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 5px;
    border-bottom: 4px solid rgba(255, 255, 255, 0);
    height: 180px;
    width: calc(33.33% - 2em) !important;
    margin-left: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 2em;
    padding: 10px 8px !important;
}

.clanSearch_resultsBadge {
    max-width: 60px !important;
    float: left;
    position: relative;
    margin: 5px 0;
}

.clanSearch_resultsName {
    margin: 0 !important;
    color: #000000 !important;
    font-weight: bold;
    margin-top: 8px !important;
}

.clanSearch_resultsName2 {
    margin: 0 !important;
    color: #000000 !important;
    font-weight: bold;
    margin-top: 8px !important;
    text-overflow: ellipsis;
    overflow: hidden;
}

.clanSearch_resultsName:hover {
    cursor: pointer;
    color: rgb(26, 106, 226) !important;
}

.clanSearch_resultsTag {
    margin: 0 !important;
    color: black;
    font-size: 12px;
    font-weight: bold;
    line-height: 100%;
}

.clanSearch_resultsFlag {
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 0.7rem;
    font-weight: bold;
}

.clanSearch_resultsStatsWrapper {
    clear: both;
    padding-top: 10px;
    padding-left: 10px;
}

.clanSearch_resultsStats {
    clear: both;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin: 8px 0 0 0 !important;
    color: black;
    font-size: 12px;
    line-height: 100%;
}

.clanWarAvg {
    padding: 10px 5px !important;
}

.playerClanHistoryResults_wrapper {
    display: inline-block !important;
    margin: 0 0.75em 20px 0.75em;
}

.playerClanHistoryResults {
    border: 1px solid rgb(82, 82, 82);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    /* background-color: white; */
    border-radius: 5px;
    margin: 0.25em !important;
    /* width: calc(20% - 1em); */
    display: inline-block !important;
    padding: 0.5em 0 0.5em 0;
    text-align: center;
    width: 98px;
}

.playerClanHistoryResults:hover {
    border: 1px solid black;
    background-color: rgb(185, 185, 185);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.playerClanHistoryResults_name {
    color: #000000 !important;
    font-size: 70%;
    font-weight: bold;
    cursor: pointer;
    margin: 0;
}

.playerClanHistoryResults_coc {
    border: 1px solid rgb(82, 82, 82);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    /* background-color: white; */
    border-radius: 5px;
    margin: 0.25em !important;
    /* width: calc(20% - 1em); */
    display: inline-block !important;
    padding: 0.5em 0 0.5em 0;
    text-align: center;
    width: 98px;
}

.playerClanHistoryResults_coc:hover {
    border: 1px solid black;
    background-color: rgb(185, 185, 185);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.playerClanHistoryResults_coc:hover a {
    color: #B71C1C !important;
}

.playerClanHistoryResults_name_coc {
    color: #cfa23b !important;
    font-size: 70%;
    font-weight: bold;
    cursor: pointer;
    margin: 0;
}

.playerClanHistoryResults_name_coc:hover {
    color: #B71C1C !important;
}

.playerClanHistoryResults_stats {
    color: black;
    font-weight: normal;
    font-size: 11px;
    margin: 0 !important;
}

.playerClanWarHistoryResults {
    border: 1px solid rgb(82, 82, 82);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    /* background-color: white; */
    border-radius: 5px;
    margin: 0.25em !important;
    /* width: calc(20% - 1em); */
    display: inline-block !important;
    padding: 0.2em 0 0.2em 0;
    text-align: center;
    width: 98px;
}

.playerClanWarHistoryResults:hover {
    border: 1px solid black;
    background-color: rgb(185, 185, 185);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.playerClanWarHistoryResults_name {
    color: black !important;
    font-size: 70%;
    font-weight: bold;
    cursor: pointer;
    margin: 0;
}

.playerClanWarHistoryResults_stats {
    color: black;
    font-weight: normal;
    font-size: 11px;
    margin: 0 !important;
    padding-right: 0.2em;
}

.playerClanWarHistoryResults_stats2 {
    color: black;
    font-weight: normal;
    font-size: 11px;
    margin: 0 !important;
    padding-right: 0.2em;
    display: flex;
    float: right;
}

.playerClanWarHistoryResults_stats3 {
    color: black;
    font-weight: normal;
    font-size: 11px;
    margin: 0 !important;
    padding-right: 0.2em;
    display: flex;
    clear: both;
    float: right;
}

.playerAchievementsResults {
    border: 1px solid rgb(82, 82, 82);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    /* background-color: white; */
    border-radius: 5px;
    margin: 0.25em !important;
    /* width: calc(20% - 1em); */
    display: inline-block !important;
    padding: 0.5em 0 0.5em 0;
    text-align: center;
    width: 160px;
}

.playerAchievementsResults_name {
    color: #000000 !important;
    font-size: 70%;
    font-weight: bold;
    cursor: pointer;
    margin: 0;
}

.playerAchievementsResults_stats {
    color: black;
    font-weight: bold;
    font-size: 11px;
    margin: 0 !important;
}

.coc_playerArmy_wrapper {
    display: inline-block !important;
    margin: 0 0.2em 20px 0.2em;
}

.coc_army_wrapper {
    display: inline-block !important;
    margin: 2em 0.2em 20px 0.2em;
}

.coc_playerArmy {
    border: 1px solid rgb(82, 82, 82);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    /* background-color: white; */
    border-radius: 5px;
    margin: 0.25em !important;
    /* width: calc(20% - 1em); */
    display: inline-block !important;
    padding: 0.5em 0 0.5em 0;
    text-align: center;
    width: 108px;
}

.coc_playerArmy_name {
    color: #000000 !important;
    font-size: 70%;
    font-weight: bold;
    cursor: pointer;
    margin: 0;
}

.coc_playerArmy_stats {
    color: black;
    font-weight: bold;
    font-size: 11px;
    margin: 0 !important;
}

.coc_playerArmyImg {
    position: relative;
    height: 5em !important;
    margin: 0.5em 0 0 0.25em;
}

.coc_armyWrapper {
    /* border: 1px solid #000000; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 5px;
    height: 215px;
    width: calc(33.333% - 2em) !important;
    margin-left: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 2em;
    padding: 0 5px !important;
    position: relative;
}

.coc_armyImg {
    max-width: 90px !important;
    float: left;
    position: relative;
    margin: 13px 5px -5px 8px;
    border-radius: 8px
}

.cards_cardWrapper {
    /* border: 1px solid #000000; */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 5px;
    height: 205px;
    width: calc(33.333% - 2em) !important;
    margin-left: 1em !important;
    margin-right: 1em !important;
    margin-bottom: 2em;
    padding: 0 5px !important;
    position: relative;
}

.cards_cardImg {
    max-width: 80px !important;
    float: left;
    position: relative;
    margin: 8px 5px 5px 8px;
}

.cards_cardName {
    margin: 0 !important;
    color: #000000 !important;
    font-weight: bold;
    margin-top: 8px !important;
    font-size: 22px;
}

.cards_cardName:hover {
    cursor: pointer;
    color: rgb(26, 106, 226) !important;
}

.coc_armyName {
    margin: 0 !important;
    color: #cfa23b !important;
    font-weight: bold;
    margin-top: 8px !important;
    font-size: 22px;
}

.coc_armyName:hover {
    cursor: pointer;
    color: #f1c03e !important;
}

.cards_cardType {
    margin: 5px 0 5px 0 !important;
    color: black;
    font-size: 14px;
    font-weight: bold;
    line-height: 100%;
}

.cards_cardDescription {
    margin: 0 !important;
    color: black;
    font-size: 12px;
    font-weight: bold;
    line-height: 125%;
}

.league {
    float: left;
    position: relative;
    height: 2em;
    margin: 0.5em 0 0 0.25em;
}

.achievements_title {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    height: 2em;
    margin: 0.5em 0 0 0.25em;
}

.achievements_title2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    height: 2em;
    margin: 0.5em 0 0 0.25em;
}

.army_title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: bold;
    height: 2em;
    margin: 0.5em 0 0 0.25em;
}

.coc_stars {
    position: relative;
    height: 2em;
    margin: 0.5em 0 0 0.25em;
}

.currentClan {
    position: relative;
    /* outline: 1px solid rgba(0,0,0,.1);
    background: linear-gradient(to bottom,rgba(0,0,0,0.05) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 75%,rgba(0,0,0,0.05) 100%); */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.18) inset;
}

.showMobile {
    display: none !important;
}

.showMobile2 {
    display: none !important;
}

.warLog_header {
    /* background-color: #000000; */
    font-size: 22px;
    font-family: 'Open Sans';
    font-weight: bold;
    margin: 0 !important;
    /* padding: 30px 0 0 0 !important; */
}

.warLog_header2 {
    /* background-color: #000000; */
    font-size: 16px;
    font-family: 'Open Sans';
    font-weight: normal;
    margin: 0 !important;
    padding-bottom: 10px;
    /* padding: 0 !important; */
}

.warLog_header3 {
    padding: 25px .75rem 5px .75rem;
}

.warLog_outline {
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.noBottomBorder {
    border-bottom: none !important;
    background-color: #f5f5f5;
}

.trackingStatus {
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 0.8rem;
}

.trackingActive {
    color: green;
    font-weight: bold;
    /* margin-left: 15px; */
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 !important;
    /* float: left;
    position: relative; */
}

.trackingInactive {
    color: red;
    font-weight: bold;
    /* margin-left: 15px; */
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 !important;
    float: left;
    position: relative;
}

.playerChartContainer {
    position: relative;
}

.warLogChart {
    /* clear: both; */
    /* width: 100%; */
    height: 400px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.warLogChart_title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 1rem 0;
}

.warLogChart_title2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 1rem 0;
    border-top: 1px solid #c0c0c0;
    padding-top: 20px;
}

.warLogChart_title3 {
    font-size: 28px;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
}

.currentRiverRace_title {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 1.5rem 0 1.5rem 0;
    font-family: 'supercell-magic';
    /* text-shadow: 0px 2px lightgrey; */
}

.leaderboard_title {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 4rem 0 1.5rem 0;
    font-family: 'supercell-magic';
    /* text-shadow: 0px 2px lightgrey; */
}

.leaderboard_title2 {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 1.5rem 0 1.5rem 0;
    font-family: 'supercell-magic';
    /* text-shadow: 0px 2px lightgrey; */
}

.currentRiverRace_time {
    clear: both;
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 25px;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'supercell-magic';
}

.currentRiverRace_stats {
    clear: both;
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 25px;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.currentRiverRace_statsCaption {
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    line-height: 1.4rem;
    font-weight: 400;
}

#myChart {
    min-height: 400px;
}

.warLog {
    margin-top: 30px;
}

.td_warLog {
    padding: 5px 30px 5px 5px !important;
}

.td_warLog2 {
    padding: 5px !important;
}

.th_warLog {
    padding: 5px 5px !important;
}

.th_cardStats {
    padding: 5px 5px !important;
    vertical-align: top;
}

.th_armyStats {
    padding: 5px 5px !important;
    vertical-align: middle;
}

.compactWarLog {
    margin-bottom: 10px;
}

.playerWarHistoryStats {
    font-size: 12px;
}

.clanTrackingWarning {
    background-color: rgba(255, 86, 86, 0.5) !important;
    border: 1.5px solid rgba(255, 86, 86, 0.75);
    border-radius: 5px;
    padding: .25rem 0 !important;
    font-weight: bold;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.clanTracking_ranks1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    margin-top: 0 !important;
    margin-bottom: 0px;
}

.clanTracking_ranks2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(127, 0, 165);
    margin-top: 0 !important;
    margin-bottom: 0px;
}

.clanTracking_ranks {
    margin-bottom: 10px !important;
}

.clanTracking_trophies {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0 !important;
    margin-bottom: 10px;
}

.clanTracking_trophies2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0 !important;
    margin-bottom: 0px;
}

.clanTracking_ranksTitle {
    font-family: 'supercell-magic';
    font-size: 1.25rem;
    margin: 0;

}

.trackingChartPadding {
    margin-top: 35px;
    margin-bottom: 35px;
}

.trackingChartPadding2 {
    margin-top: 65px;
    margin-bottom: 90px;
}

.trackingChartPadding3 {
    margin-top: 0;
    margin-bottom: 100px;
}

.trackingChartPadding4 {
    margin-top: 0;
    margin-bottom: 35px;
}

.clanTracking_flag {
    align-items: center;
    text-align: center;
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}

.mainPageBackground {
    background: #03468d url(https://clashratings.com/img/backgrounds/diamond-tile.svg) center center;
    background-size: 64px;
    box-shadow: inset 0px 6px 70px 10px rgba(0, 0, 0, 0.8);
    min-height: 300px;
}

.mainPage_link {
    font-size: 22px;
    font-family: 'Open Sans';
    font-weight: bold;
    margin: 30px 0 !important;
}

.mainPage_logo {
    width: 50%;
}

.workInProgress_logo {
    width: 20%;
}

.mainPage_title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 1rem 0;
}

.mainPage_clanExample {
    max-width: 500px !important;
    width: 100%;
    height: auto;
}

.clanSearchPage_logo {
    width: 40%;
}

.socialLinks {
    color: white;
}

.socialLinks:hover {
    color: rgb(172, 172, 172);
}

.socialLinks_coc {
    color: black;
}

.socialLinks_coc:hover {
    color: #B71C1C;
}

.socialLinks2 {
    color: #000000;
}

.socialLinks2:hover {
    color: rgb(19, 113, 255);
}

.highlightActivity {
    background-color: rgb(172, 212, 119);
}

.highlightLadder {
    background-color: rgb(143, 201, 255);
}

.highlightWar {
    background-color: rgb(255, 129, 129);
}

.stats {
    padding: 0 !important;
    font-size: 12px;
}

.stats2 {
    padding: 0 !important;
    font-size: 12px;
}

.blinking {
    animation: blinkingText 1.2s infinite;
}

/* Contact Form CSS */
/* label color */
.input-field label {
    color: #444;
}

/* label focus color */
.input-field input:focus+label {
    color: #000000 !important;
}

/* label focus color */
.input-field textarea:focus+label {
    color: #000000 !important;
}

/* label underline focus color */
.input-field input[type=text]:focus {
    border-bottom: 1px solid #000000 !important;
    box-shadow: 0 1px 0 0 #000000 !important;
}

/* label underline focus color */
.input-field input[type=email]:focus {
    border-bottom: 1px solid #000000 !important;
    box-shadow: 0 1px 0 0 #000000 !important;
}

/* label underline focus color */
.input-field textarea:focus {
    border-bottom: 1px solid #000000 !important;
    box-shadow: 0 1px 0 0 #000000 !important;
}

.contactButton {
    background-color: #000000;
}

.contactButton:hover {
    background-color: rgb(18, 92, 204);
}

.clanSearchButton {
    background-color: rgb(219, 219, 219);
    color: black;
    font-size: 1.5rem;
    width: 100%;
    height: 60px;
    line-height: 0 !important;
    text-transform: none !important;
    margin-bottom: 20px;
}

.clanSearchButton:hover {
    background-color: rgb(172, 172, 172);
}

.clanSearchButton:focus {
    background-color: #0c3d86 !important;
    color: white;
}

.clanSearchButton2 {
    background-color: rgb(219, 219, 219);
    color: black;
    font-size: 1.5rem;
    width: 100%;
    height: 60px;
    line-height: 0 !important;
    text-transform: none !important;
    margin-bottom: 20px;
}

.clanSearchButton2:hover {
    background-color: rgb(172, 172, 172);
}

.clanSearchButton2:focus {
    background-color: #aa8631 !important;
    color: black;
}

.csvButton {
    background-color: rgb(219, 219, 219);
    color: black;
    font-size: 0.9rem;
    height: 30px;
    line-height: 0 !important;
    text-transform: none !important;
}

.csvButton:hover {
    background-color: rgb(172, 172, 172);
}

.csvButton:focus {
    background-color: #0c3d86 !important;
    color: white;
}

.error {
    text-align: left !important;
    color: red;
    font-weight: bold;
    font-size: 14px;
}

.success {
    color: green;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.openInGameButton {
    font-size: 1.75rem;
}

.openArmyButton {
    font-size: 1.5rem;
}

.pageName_title {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0 1rem 0;
}

.pageName_title2 {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0 1rem 0;
}

.pageName_title_blog {
    font-size: 3rem;
    font-weight: bold;
    margin: 4rem 0 1rem 0;
}

.pageName_title_blog_h3 {
    font-size: 2.3rem;
    font-weight: bold;
    margin: 1rem 0 1rem 0;
}

.pageName_title_blog_main {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 0.3rem 0;
}

.pageName_title_blog_main_date {
    /* font-size: 1.4rem; */
    /* font-weight: bold; */
    margin: 0.1rem 0;
}

.pageName_title_supporters {
    font-size: 2.6rem;
    font-weight: bold;
    margin: 0 0 0.3rem 0;
}

.blueHighlight {
    background-color: rgba(13, 72, 161, 0.5);
}

#myProgress {
    width: 100%;
    background-color: grey;
    text-align: center;
    /* To center it horizontally (if you want) */
    line-height: 30px;
    /* To center it vertically */
    color: white;
}

#myBar {
    width: 0%;
    height: 30px;
    background-color: rgb(255, 230, 0);
    text-align: center;
    /* To center it horizontally (if you want) */
    line-height: 30px;
    /* To center it vertically */
    color: white;
}

.noWrap {
    white-space: nowrap;
}

.progressIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.progressIcon2 {
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.progressIcon3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.progressIconImg {
    height: 25px;
    padding-right: 5px;
}

.progressIconImg2 {
    width: 20px;
    /* padding-right: 5px; */
    vertical-align: middle;
}

.playerProgress_date {
    border: 1px solid rgb(0, 0, 0);
    border-radius: 5px;
}

.tableRow_playerProgress {
    max-height: 22px !important;
    vertical-align: middle;
    display: inline-block !important;
    padding-left: 5px;
}

.progressContainer {
    /* border: 1px solid #000000; */
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    padding-top: 2rem !important;
    /* border-bottom: 1px solid #e0e0e0; */
    padding-bottom: 1.4rem !important;
    margin-bottom: 2rem !important;
    margin-left: .5rem !important;
    margin-right: .5rem !important;
    width: calc(33.3333% - 1rem) !important;
}

#more {
    display: none;
}

.modal-content {
    /* padding: 24px 10px 24px 10px !important; */
    text-align: center;
}

.modal-content .modal-text-wrapper {
    display: inline-block !important;
    text-align: left;
}

.champion {
    background-color: #ffe43f;
}

.legendary {
    background-color: rgb(212, 234, 253);
}

.epic {
    background-color: orchid;
}

.rare {
    background-color: orange;
}

.common {
    background-color: lightskyblue;
}

.totals {
    background-color: gainsboro;
}

.loginIcon {
    max-height: 20px;
    font-size: 20px !important;
}

.mobileLogin {
    position: relative;
    z-index: 999999999;
}

.coc_warLog_leftstar {
    max-width: 32px;
    margin-right: -16px;
    z-index: 10;
}

.coc_warLog_rightstar {
    max-width: 32px;
    margin-left: -16px;
    z-index: 10;
}

.coc_warLog_leftstar2 {
    max-width: 24px;
    margin-right: -16px;
    z-index: 10;
}

.coc_warLog_rightstar2 {
    max-width: 24px;
    margin-left: -16px;
    z-index: 10;
}

.coc_warLog_clanBadge {
    max-width: 60px !important;
    float: left;
    position: relative;
    margin: 5px 0;
}

.coc_warLog_opponentBadge {
    max-width: 60px !important;
    float: right;
    position: relative;
    margin: 5px 0;
}

.coc_warLog_outcome {
    float: left;
    position: absolute;
    margin: 0;
    padding-left: 10px;
    margin-top: 10px;
}

.coc_warLog_battleEmblem {
    position: absolute;
    left: 91%;
    margin: 0;
    margin-top: 0px;
}

.coc_warLog_battleBadge {
    max-height: 40px !important;
    position: relative;
    margin: 5px 0;
}

.coc_warLog_timeTrophyWrapper {
    clear: both;
    position: relative;
    float: right;
}

.materialert {
    position: relative;
    min-width: 150px;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.1s linear;
    /* webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2); */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.materialert .material-icons {
    margin-right: 5px;
}

.materialert .close-alert {
    -webkit-appearance: none;
    border: 0;
    cursor: pointer;
    color: inherit;
    background: 0 0;
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
    filter: alpha(opacity=40);
    margin-bottom: -5px;
    position: absolute;
    top: 16px;
    right: 5px;
}

.materialert.info {
    background-color: #039be5;
    color: #fff;
}

.materialert.coc {
    background-color: #cfa23b;
    color: #000;
}

.materialert.discord {
    background-color: #4d6ad0;
    color: white;
}

.materialert.orange {
    background-color: #ff9400;
    color: white;
}

.materialert.blue {
    background-color: #2876c6;
    color: white;
}

.materialert.green {
    background-color: #4CAF50;
    color: white;
}

.materialert.success {
    background-color: #43a047;
    color: #fff;
}

.materialert.error {
    background-color: #c62828;
    color: #fff;
}

.materialert.danger {
    background-color: #c62828;
    color: #fff;
}

.materialert.warning {
    background-color: #fbc02d;
    color: #fff;
}

#widescreen_adContainer {
    /* display: inline-block; */
    width: 80%;
    /* z-index: -1; */
}

#widescreen_adContainer2 {
    /* display: inline-block; */
    width: 11%;
    margin-left: 89%;
    position: fixed;
    /* z-index: -1; */
}

#widescreen_adContainer_leftCol {
    width: 160px;
    height: 600px;
    float: left;
    position: fixed;
    /* fixed - scrolls down, absolute - does not scroll down */
    /* margin:0 auto; */
    /* Uncomment If You Want To Scroll Adunit / Content Area */
    /*margin-left:1150px;*/
    /* Uncomment and adjust value to place unit on right side */
    margin-top: 150px;
    margin-left: 5px;
}

#widescreen_adContainer_rightCol {
    width: 160px;
    height: 600px;
    float: right;
    /*position: fixed;      /* fixed - scrolls down, absolute - does not scroll down */
    /*margin:0 auto;       /* Uncomment If You Want To Scroll Adunit / Content Area */
    /*margin-left:1850px;       /* Uncomment and adjust value to place unit on right side */
    margin-top: 150px;
    margin-right: 5px;
}

.playerMasteryLevelSummary {
    padding-top: 5px;
    display: flex;
    width: 100%;
}

.playerMasteryLevelSummary .levels {
    width: 14%;
    max-width: 3rem;
    text-align: center;
}

.playerMasteryLevelSummary .levels .level {
    font-size: .8rem;
    white-space: nowrap;
    color: black !important;
    font-weight: bold !important;
    border: 1px solid white;
    line-height: 17px;
    letter-spacing: 1px;
    border-radius: 4px;
}

.playerMasteryLevelSummary .levels .lvl0 {
    font-weight: bold !important;
    color: #000 !important;
    text-shadow: 0px 0px 0px #000;
}

.playerMasteryLevelSummary .levels .lvl1 {
    font-weight: bold !important;
    background-color: #a54c2a !important;
    color: white !important;
    text-shadow: 1px 1px 2px #000;
}

.playerMasteryLevelSummary .levels .lvl2 {
    font-weight: bold !important;
    background-color: #a6abb8 !important;
    color: white !important;
    text-shadow: 1px 1px 2px #000;
}

.playerMasteryLevelSummary .levels .lvl3 {
    font-weight: bold !important;
    background-color: #7f4c3d !important;
    color: white !important;
    text-shadow: 1px 1px 2px #000;
}

.playerMasteryLevelSummary .levels .lvl4 {
    font-weight: bold !important;
    background-color: #8ba6c5 !important;
    color: white !important;
    text-shadow: 1px 1px 2px #000;
}

.playerMasteryLevelSummary .levels .lvl5 {
    font-weight: bold !important;
    background-color: #dbb760 !important;
    color: white !important;
    text-shadow: 1px 1px 2px #000;
}

.playerMasteryLevelSummary .levels .lvl6 {
    font-weight: bold !important;
    background-color: #ffc53a !important;
    color: white !important;
    text-shadow: 1px 1px 2px #000;
}

.playerMasteryLevelSummary .levels .lvl7 {
    font-weight: bold !important;
    background-color: rgb(176 64 251) !important;
    color: white !important;
    text-shadow: 1px 1px 2px #000;
}

.playerMasteryLevelSummary .levels .count {
    font-size: .9rem;
    white-space: nowrap;
    color: black !important;
    font-weight: normal !important;
}

.playerMasteryLevelSummary .levels .count>span {
    background-color: rgb(152 0 255 / 33%);
    padding: 0.2rem 0.5rem;
    outline: 1px solid rgb(143 143 143);
}

/* FLICKITY START */

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, transparentize(#0E1D33, 0.2), transparentize(#0E1D33, 0.8));
}

.flickity-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.flickity-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 4rem;
}

.flickity-column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    /* align-items: center; */
    padding: 0 3rem 0 3rem;
    font-size: 2rem;
}

.hero-slider {
    width: 100%;
    height: 28rem;
    /* overflow: hidden; */
}

.hero-slider .carousel-cell {
    width: 100%;
    height: 28rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-slider .carousel-cell .inner {
    /* font-family: 'supercell-magic'; */
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
    font-size: 3rem;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    -webkit-text-stroke-width: 0.4px;
    -webkit-text-stroke-color: #000000ba;
    /* text-shadow: 1px 2px black; */
    text-shadow: 0 1px 0 rgb(0 0 0 / 50%),
        1px 1px 0 rgb(0 0 0 / 50%),
        -1px 1px 0 rgb(0 0 0 / 50%),
        0 2px 2px rgb(0 0 0 / 20%),
        2px 2px 2px rgb(0 0 0 / 20%),
        -2px 2px 2px rgb(0 0 0 / 20%);
    line-height: 3rem;
    letter-spacing: 1px;
}

.hero-slider .carousel-cell .inner .subtitle {
    font-size: 1.6rem;
    font-weight: bolder;
    font-style: italic;
}

.hero-slider .carousel-cell .inner .flickity-btn {
    /* border: 1px solid #fff; */
    padding: 14px 18px;
    /* text-transform: uppercase; */
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    transition: all .2s ease;
    background-color: #000000;
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke-color: black;
    text-shadow: none;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}

.hero-slider .carousel-cell .inner .flickity-btn:hover {
    background: rgb(26, 106, 226);
    color: #fff;
}

.hero-slider .carousel-cell .inner .purple {
    background-color: #9c27b0 !important;
}

.hero-slider .carousel-cell .inner .purple:hover {
    background-color: #6430b6 !important;
}

.hero-slider .carousel-cell .inner .green {
    background-color: #01a66e !important;
}

.hero-slider .carousel-cell .inner .green:hover {
    background-color: #13864f !important;
}

.hero-slider .carousel-cell .inner .red {
    background-color: #F44336 !important;
}

.hero-slider .carousel-cell .inner .red:hover {
    background-color: #e12618 !important;
}

.hero-slider .carousel-cell .inner .gold {
    background-color: #eba032 !important;
}

.hero-slider .carousel-cell .inner .gold:hover {
    background-color: #ad7523 !important;
}

.flickity-prev-next-button {
    width: 80px;
    height: 80px;
    background: transparent !important;
}

.flickity-prev-next-button:hover {
    background: transparent !important;
}

.flickity-prev-next-button .arrow {
    fill: white;
}

.flickity-prev-next-button .arrow:hover {
    fill: #a6abb8;
}

.flickity-page-dots {
    bottom: 15px !important;
}

.flickity-page-dots .dot {
    width: 30px;
    height: 4px;
    opacity: 1;
    background: #fff !important;
    border: 0 solid white;
    border-radius: 0;
}

.flickity-page-dots .is-selected {
    background: #ff0000;
    border: 0 solid #ff0000;
}

.hero-slider2 .flickity-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0;
}

.hero-slider2 .flickity-column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    /* align-items: center; */
    padding: 0;
    font-size: 2rem;
}

.hero-slider2 {
    width: 100%;
    height: 44rem;
    /* overflow: hidden; */
}

.hero-slider2 .carousel-cell {
    width: 100%;
    height: 42rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-slider2 .carousel-cell .inner {
    /* font-family: 'supercell-magic'; */
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
    font-size: 2rem;
    position: relative;
    top: 5%;
    transform: translateY(-50%);
    /* color: white; */
    /* -webkit-text-stroke-width: 0.4px;
    -webkit-text-stroke-color: #000000ba; */
    /* text-shadow: 1px 2px black; */
    /* text-shadow: 0 1px 0 rgb(0 0 0 / 50%),
    1px 1px 0 rgb(0 0 0 / 50%),
    -1px 1px 0 rgb(0 0 0 / 50%),
    0 2px 2px rgb(0 0 0 / 20%),
    2px 2px 2px rgb(0 0 0 / 20%),
    -2px 2px 2px rgb(0 0 0 / 20%); */
    line-height: 3rem;
    letter-spacing: 1px;
    color: #000000;
    text-align: center;
}

.hero-slider2 .carousel-cell .inner .subtitle {
    font-size: 1.6rem;
    font-weight: bolder;
    font-style: italic;
}

.hero-slider2 .flickity-page-dots {
    bottom: 20px !important;
}

.hero-slider2 .flickity-page-dots .dot {
    width: 40px !important;
    height: 7px !important;
    opacity: 0.25;
    background: #000 !important;
    border-radius: 0;
}

/* .hero-slider2 .flickity-page-dots .is-selected {
    background: #ff0000;
    border: 0 solid #ff0000;
} */

/* FLICKITY END */

/* .cr-tooltip {
    position: relative;
}

.cr-tooltip:after {
    opacity: 1;
    visibility: visible;
    position: absolute;
    content: attr(data-tooltip);
    padding: 6px 10px;
    bottom: 1.4em;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    background: grey;
    color: white;
    white-space: nowrap;
    z-index: 2;
    border-radius: 2px;
}

.cr-tooltip:hover {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
}
  
  .cr-tooltip--triangle {
    &:before {
      content: '';
      width: 0;
      height: 0;
      border-left: solid 5px transparent;
      border-right: solid 5px transparent;
      border-top: solid 5px grey;
      opacity: 1;
      visibility: visible;
      position: absolute;
      transform: translateX(-50%) translateY(-2px);
      bottom: 1.1em;
      left: 50%;
      transition: opacity 0.2s $cubic, transform 0.2s $cubic;
      z-index: 3;
    }
    &:hover {
      &:before {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
      }
    }
  } */

/* Add this attribute to the element that needs a tooltip */
[data-crtooltip] {
    position: relative;
    /* z-index: 2; */
    cursor: pointer;
}

/* Hide the tooltip content by default */
[data-crtooltip]:before,
[data-crtooltip]:after {
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
}

/* Position tooltip above the element */
[data-crtooltip]:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-bottom: 5px;
    margin-left: -50%;
    padding: 7px;
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #000;
    background-color: hsl(0deg 0% 100%);
    color: #000;
    font-weight: bold;
    content: attr(data-crtooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    /* webkit-box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 30%); */
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 30%);
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-crtooltip]:after {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #000;
    border-top: 5px solid hsl(0deg 0% 100%);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
}

/* Show tooltip content on hover */
[data-crtooltip]:hover:before,
[data-crtooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

/* END OF FIRST SECTION */

@keyframes blinkingText {
    0% {
        color: #000000;
    }

    49% {
        color: #000000;
    }

    60% {
        color: rgba(132, 142, 158, 0.5);
    }

    99% {
        color: rgba(132, 142, 158, 0.5);
    }

    100% {
        color: #000000;
    }
}

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


    #widescreen_adContainer {
        display: none;
    }

    #widescreen_adContainer2 {
        display: none;
    }
}

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

    .tableData_raceStats {
        padding-left: 0;
    }

}

@media only screen and (max-width: 1139px) {
    .clanContainer {
        padding: 0;
    }

    .clanSearchWrapper {
        width: calc(50% - 2em) !important;
    }

    .clanSearchWrapper2 {
        width: calc(33.333% - 2em) !important;
    }

    .clanSearchWrapper3 {
        width: calc(33.333% - 2em) !important;
    }

    .clanSearchWrapper4 {
        width: calc(33.333% - 2em) !important;
    }

    .clanSearchWrapper5 {
        width: calc(33.333% - 2em) !important;
    }

    .coc_armyWrapper {
        width: calc(50% - 2em) !important;
    }

    .cards_cardWrapper {
        width: calc(50% - 2em) !important;
        height: 235px;
    }

    .clanRecruitmentWrapper {
        width: calc(50% - 2em) !important;
    }

    .progressContainer {
        width: calc(100% - 1rem) !important;
    }

    .currentDeck_cards {
        width: 11%;
    }

    .playerCards_cards {
        width: 10%;
    }

    .playerBattle_wrapper {
        width: 100% !important;
        height: auto;
    }

    .playerBattle_cards {
        width: 23%;
    }

    .playerBattle_emblem {
        left: 96%;
    }

    .playerBattle_trophyChange {
        left: 94.5%;
    }

    .playerBattle_select {
        width: 100% !important;
        margin-bottom: 5px;
    }

    .playerBattle_select2 {
        width: 100% !important;
        margin-top: 1em;
        margin-left: 0;
    }

    .popularDecks_select {
        width: 100% !important;
        margin-bottom: 5px;
    }

    .locationId_select {
        width: 100% !important;
        margin-bottom: 5px;
    }

    /* .tableRow_clan_badge3 {
        max-width: 10px !important;
    } */

    .tableRow_clan_badge5 {
        max-width: 21.5px !important;
        /* padding-right: 5px; */
    }

    /* .playerBattle_opponentSide {
        font-size: 14px;
    }

    .playerBattle_playerSide {
        font-size: 14px;
    } */

    .playerBattle_boatBattleShields {
        margin: 2em !important;
        margin-top: 4.8em !important;
        display: inline-block !important;
        padding: 0.2em 0 0.2em 0;
        text-align: center;
        width: 30%;
        background-size: contain;
        position: relative;
        vertical-align: top;
    }

    .playerBattle_boatBattleShieldsTitle {
        clear: both;
        /* float: left !important; */
        margin: 0 0 5px 0 !important;
        color: black;
        font-family: 'supercell-magic';
        font-size: 12px;
        font-weight: bold;
        line-height: 120%;
        -webkit-text-stroke-width: 0px;
        -webkit-text-stroke-color: black;
    }

    .playerBattle_boatBattleShieldsImg {
        width: 100%;
        margin: 0;
    }

    .playerBattle_boatBattleShieldsNumber {
        font-size: 4rem;
        top: 62px;
    }

    .tabs {
        height: 140px;
    }

    .tabs .tab {
        height: 140px;
    }
}

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

    .hideMobile {
        display: none !important;
    }

    .showMobile {
        display: block !important;
    }

    .container {
        width: 85%;
    }

    .owl-nav {
        display: none;
    }

    .owl-dots {
        display: none;
    }

    #owl-carousel2 .owl-dots {
        display: block;
    }

    .playerSearch {
        width: 100%;
        height: 50px;
        margin: 0 !important;
        padding: 0;
        z-index: 1;
    }

    .playerSearch_coc {
        width: 100%;
        height: 50px;
        margin: 0 !important;
        padding: 0;
        z-index: 1;
    }

    .playerSearch2 {
        width: 85%;
        margin: 0 auto !important;
        /* padding: 0 10px; */
        height: 40px;
        border-radius: 5px;
        /* z-index: 1; */
    }

    .playerSearch4 {
        /* width: 85%; */
        margin: 0 auto !important;
        /* padding: 0 10px; */
        height: 40px;
        border-radius: 5px;
        /* z-index: 1; */
    }

    .playerSearchInput2 {
        display: inline-block;
        *display: inline;
        *zoom: 1;
        vertical-align: middle;
        height: 40px;
        font-size: 130% !important;
        position: absolute;
        border: 0 !important;
        padding-left: 10px !important;
        font-family: 'Open Sans';
        width: 66.8% !important;
    }

    .playerHeader_badge {
        max-width: 70px !important;
        float: left;
        position: relative;
        /* margin-top: 15px; */
    }

    .playerHeader_badge2 {
        max-width: 70px !important;
        float: left;
        position: relative;
        /* margin-top: 15px; */
    }

    .playerHeader_badge_wrapper {
        max-width: 70px !important;
        float: left;
        position: relative;
        margin-top: 15px;
    }

    .playerHeader_badge_coc {
        max-width: 60px !important;
        float: left;
        position: relative;
        /* margin-top: 15px; */
    }

    .playerHeader_name_coc {
        margin: 15px 0 0 0;
        font-family: 'supercell-magic';
        font-size: 18px;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .rating-badge {
        max-width: 70px !important;
        float: left;
        position: relative;
    }

    .playerHeader_name {
        margin: 25px 0 0 0;
        font-family: 'supercell-magic';
        font-size: 18px;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .playerHeader_stats {
        position: relative;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        /* padding-top: 10px; */
        width: 100%;
        font-family: 'Open Sans', sans-serif;
        font-size: 10px;
        font-weight: bold;
    }

    .player-details-top {
        font-weight: bold;
        margin: 0;
        font-family: 'Open Sans';
        font-size: 16px !important;
        line-height: 0;
        vertical-align: middle;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 5px;
        /* justify-content: center; */
    }

    .player-clan-details {
        font-weight: bold;
        margin: 0;
        font-family: 'Open Sans';
        font-size: 16px !important;
        line-height: 0;
        vertical-align: middle;
        height: 25px;
        align-items: center;
    }

    .cwrImg {
        margin: 0;
        padding-right: 5px;
        width: 40px;
    }

    .cwrImg2 {
        margin: 0;
        padding-right: 1px;
        padding-left: 1px;
        width: 17px;
    }

    .warWinImg {
        margin: 0;
        width: 18px;
    }

    .cdCardsImg {
        margin: 0;
        width: 25px;
    }

    /* .clanHeader_badge {
        max-width: 100px !important;
        float: left;
        position: relative;
        margin: 15px 0;
    }

    .clanHeader_name {
        margin: 30px 0 0 0;
        font-family: 'supercell-magic';
        font-size: 18px;
        text-overflow: ellipsis;
        overflow: hidden;
    } */

    .clanStatsImg {
        height: 25px;
    }

    .clanStatsImg2 {
        height: 33px;
    }

    .clanStatsImgFlag {
        height: 20px;
    }

    .tableBody {
        border-top: 1px solid rgba(34, 36, 38, .15);
        border-bottom: 1px solid rgba(34, 36, 38, .15);
        font-weight: bold;
    }

    .tableRow_clan {
        padding: 0 5px !important;
        border-left: 1px dotted rgba(34, 36, 38, .15);
    }

    .tableRow_clan2 {
        padding: 0 .5rem !important;
        /* border-left: 1px dotted rgba(34,36,38,.15); */
    }

    .tableRow_clanRatings {
        padding: 0 5px !important;
        border-left: 1px dotted rgba(34, 36, 38, .15);
    }

    .tableRow_clanRatings2 {
        padding: 0 5px !important;
        border-left: 1px dotted rgba(34, 36, 38, .15);
        font-size: 80%;
    }

    .tableRow_topPlayers {
        padding: 0 5px !important;
        border-left: 1px dotted rgba(34, 36, 38, .15);
        /* font-size: 90%; */
    }

    .tableRow_topPlayers .td {
        padding: 10px 5px !important;
    }

    .tableRow_playerProgress2 {
        padding: 0 5px !important;
        /* border-left: 1px dotted rgba(34,36,38,.15); */
        font-size: 55%;
    }

    .tableRow_playerProgress3 {
        padding: 0 5px !important;
        font-size: 75%;
    }

    .tableRow_clanWarStats {
        padding: 0 5px !important;
        border-left: 1px dotted rgba(34, 36, 38, .15);
    }

    .tableRow_clan_badge {
        max-width: 20px !important;
        vertical-align: middle;
        display: inline-block !important;
        padding-right: 5px;
    }

    .tableRow_clan_badge3 {
        max-width: 12px !important;
    }

    .tableRow_clan_badge5 {
        max-width: 18px !important;
        /* padding-right: 5px; */
    }

    .tableRow_clan_cards1 {
        max-width: 18px !important;
        vertical-align: middle;
        display: inline-block !important;
        padding-right: 5px;
    }

    .tableRow_clan_cards2 {
        max-width: 18px !important;
        vertical-align: middle;
        display: inline-block !important;
        padding-left: 5px;
    }

    .tableRow_currentWar {
        max-width: 20px !important;
        vertical-align: middle;
        display: inline-block !important;
        padding-left: 5px;
    }

    .tableRow_currentWar2 {
        max-width: 30px !important;
        vertical-align: middle;
        display: inline-block !important;
        padding-left: 5px;
    }

    .tableRow_currentWar3 {
        max-width: 25px !important;
        vertical-align: middle;
        display: inline-block !important;
        margin-left: 0;
        margin-right: 5px;
    }

    .tableRow_currentWar4 {
        max-width: 30px !important;
        vertical-align: middle;
        display: inline-block !important;
        margin-left: 0;
        margin-right: 5px;
    }

    .tableRow_war_badge {
        max-width: 35px !important;
        vertical-align: middle;
        display: inline-block;
        /* padding-right: none !important; */
    }

    .tableRow_war_badge2 {
        max-width: 35px !important;
        vertical-align: middle;
        /* display: inline-block !important; */
        /* padding-right: none !important; */
    }

    .borderLeft {
        border-left: none;
    }

    .borderLeft3 {
        border-left: none;
    }

    table.responsive-table th {
        font-size: 55%;
        height: 40px;
        width: 60px;
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    table.responsive-table th.dailyWar {
        font-size: 55%;
        height: 60px;
        width: 60px;
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    table.responsive-table td {
        font-size: 80%;
        height: 40px;
        width: 100%;
        text-align: center !important;
        display: block !important;
        padding: 5px 5px !important;
    }

    table.responsive-table td.dailyWar {
        font-size: 80%;
        height: 60px;
        width: 100%;
        text-align: center !important;
        display: block !important;
        padding: 5px 5px !important;
    }

    .tableLastSeen {
        font-size: 8px;
        margin: 0 !important;
        line-height: 1;
    }

    .tableLastSeen2 {
        font-size: 8px;
        margin: 0 !important;
        line-height: 1;
        margin-bottom: 5px !important;
    }

    .tableLastSeen3 {
        font-size: 10px;
        margin: 0 !important;
        line-height: 1;
        margin-bottom: 5px !important;
    }

    .tableLastSeen5 {
        font-size: 8px;
    }

    .tableLastSeen6 {
        font-size: 10px;
    }

    .tablePointsBreakdown {
        font-size: 8px;
        font-weight: normal;
        margin: 0 !important;
        color: black;
    }

    .currentWarPlayerName {
        padding-left: 8px;
    }

    .currentWarPlayerName2 {
        padding-left: 5px;
    }

    .currentWarPlayerName3 {
        padding-left: 5px;
    }

    .currentWarPlayerName4 {
        padding-left: 5px;
    }

    .raceStatsPlayerName {
        padding-left: 8px;
    }

    .raceStatsPadding {
        padding-left: 40px
    }

    .raceStatsPadding2 {
        padding-left: 40px
    }

    .currentWarClanName {
        padding-left: 25px;
    }

    .clanWarStats_emblem {
        height: 20px;
        display: block !important;
        margin: 0 auto !important;
    }

    .clanWarStats_emblem2 {
        height: 20px;
        display: block !important;
        margin: 0 auto !important;
    }

    .clanWarStats_emblemHeader {
        padding-top: 7.5px !important;
    }

    .clanWarStats_emblemHeader::before {
        content: none !important;
    }

    .clanWarStats_outcome {
        height: 25px;
    }

    .clanWarStats_outcome2 {
        height: 25px;
    }

    .clanAverage {
        font-weight: bold;
        background-color: rgba(34, 36, 38, .3);
        border-top: none;
        border-bottom: none;
    }

    .tableHeaderRow {
        border-top: none;
        border-bottom: 1px solid rgba(34, 36, 38, .15) !important;
        background-color: #000000;
    }

    .tableHeaderRow_coc {
        border-top: none;
        border-bottom: 1px solid rgba(34, 36, 38, .15) !important;
        background-color: #cfa23b;
    }

    .mobileTableHeader {
        border-right: none !important;
    }

    .currentDeck {
        height: 70%;
    }

    .currentDeck_cards {
        width: 10%;
    }

    .playerCards_cards {
        width: 10%;
    }

    .player-stats-title {
        display: flex;
        align-items: center;
        font-size: 14px;
        font-family: 'Open Sans';
        font-weight: bold;
    }

    .player-stats-title_coc {
        display: flex;
        align-items: center;
        font-size: 14px;
        font-family: 'Open Sans';
        font-weight: bold;
    }

    .player-stats-title-img {
        height: 20px;
        padding-right: 5px;
    }

    .player-stats-metric {
        width: 100%;
        display: flex;
    }

    .player-stats-metric-title {
        font-size: 12px;
        font-family: 'Open Sans';
        padding-left: 15px;
    }

    .player-stats-metric-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        border-bottom: 1px dotted #ccc;
        margin-left: 5px;
        margin-right: 5px;
        top: -15px;
        margin-bottom: 6px;
    }

    .player-stats-metric-counter {
        font-size: 12px;
        font-family: 'Open Sans';
        font-weight: bold;
    }

    .expLevelImg {
        display: inline-block;
        font-style: normal;
        background: url(https://clashratings.com/img/ui/experience_level.png) top left;
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
        line-height: 16px;
        font-family: 'supercell-magic';
        font-size: 6px;
        text-align: center;
        color: #FFFFFF;
        text-shadow: 0 1px 2px #222222;
        margin-right: 5px;
    }

    .autocomplete {
        width: 18em;
        margin-left: 90px;
    }

    .autocomplete2 {
        width: 18em;
        /* margin-left: 90px; */
    }

    .autocompleteImg {
        width: 3.2rem;
        float: left;
        margin: 3px 10px 0 5px;
    }

    .autocompleteImg2 {
        width: 5rem;
        float: right;
        margin: 3px 10px 0 5px;
    }

    .playerSearchInput4 {
        font-size: 130% !important;
        padding-left: 10px !important;
        width: 77.4% !important;
    }

    .playerSearchInput5 {
        /* font-size: 130% !important; */
        padding-left: 10px !important;
        width: 77.4% !important;
    }

    .warLogChart {
        height: 400px !important;
    }

    #myChart {
        min-height: 400px;
    }

    .tableData_lessPadding2 {
        padding: 10px 0 !important;
        margin-bottom: 7px !important;
        border-left: none;
        border-right: none;
    }

    .openInGameButton {
        font-size: 1.6rem;
    }

    .starLevelPreview {
        position: relative;
        margin-bottom: 10px;
        /* max-width: 19rem !important; */
    }

    .cardHeader_img {
        max-width: 12rem !important;
        float: left;
        position: relative;
        margin-top: 25px;
    }

    .coc_armyHeader_img {
        max-width: 14rem !important;
        float: left;
        position: relative;
        margin-top: 25px;
    }

    .cardHeader_elixir {
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(https://clashratings.com/img/cr-cards/elixir.png);
        width: 3.5rem;
        height: 3.5rem;
        color: #fff;
        font-size: 1.7rem;
        font-family: 'supercell-magic';
        line-height: 48px;
        padding: .1rem .4rem .2rem 0;
        text-align: center;
        vertical-align: middle;
        text-shadow: 0 1px 3px #000;
        font-weight: 700;
        position: absolute;
        top: 8px;
        left: 0;
    }

    .cardHeader_name {
        margin: 35px 0 15px 0;
        font-family: 'supercell-magic';
        font-size: 2.3rem;
        text-overflow: ellipsis;
        overflow: hidden;
        /* padding-left: 10px; */
    }

    .cardHeader_type {
        margin: 0;
        font-family: 'Open Sans', sans-serif;
        font-size: 1.3rem;
        font-weight: bold;
        margin-top: 8px;
    }

    .cardHeader_description {
        clear: both;
        position: relative;
        vertical-align: middle;
        margin-left: 15px;
        font-family: 'Open Sans', sans-serif;
        font-size: 1.2rem;
        font-weight: bold;
        width: 60%;
        line-height: 1.5;
        padding-top: 10px;
    }

    .coc_armyHeader_name {
        margin: 45px 0 15px 0;
        font-family: 'supercell-magic';
        font-size: 2.3rem;
        text-overflow: ellipsis;
        overflow: hidden;
        /* padding-left: 10px; */
    }

    .cardStats_emblem {
        height: 25px;
        display: block !important;
        margin: 0 auto !important;
    }

    .cardStats_emblem_coc {
        height: 25px;
        display: block;
        margin: 0 auto !important;
    }

    .playerBattle_trophyChange {
        left: 93%;
    }

    .tableData_raceStats2 {
        border-right: none;
        border-left: none;
    }

    .pageName_title_blog {
        font-size: 2rem;
    }

    .pageName_title_blog_h3 {
        font-size: 1.8rem;
    }

    .pageName_title_supporters {
        font-size: 2.3rem;
        font-weight: bold;
        margin: 0 0 0.3rem 0;
    }

    .clanSearchWrapper2 {
        height: 82px;
    }

    .clanSearchWrapper3 {
        height: 110px;
    }

    .clanSearchWrapper4 {
        height: 155px;
    }

    .clanSearchWrapper5 {
        height: 198px;
    }

    .tabs {
        height: 230px;
    }

    .tabs .tab {
        height: 230px;
    }

    .mainHeader_navbar {
        display: none;
    }

    .playerCWRImg {
        /* display: inline-block;
        font-style: normal;
        background: url(https://clashratings.com/img/ui/lvl-shield.png) top left; */
        width: 22px;
        height: 22px;
        background-size: 22px 22px;
        line-height: 24px;
        /* font-family: 'supercell-magic'; */
        font-size: 9px;
        /* font-weight: normal !important;
        text-align: center;
        color: #FFFFFF;
        text-shadow: 0 1px 2px #222222; */
        /* margin-right: 5px; */
    }

    .playerCWRImg_wrapper {
        /* float: left;
        position: relative;
        margin: 0 !important;
        line-height: 10% !important; */
        font-size: 12px;
        /* font-weight: bold; */
    }

    .playerCards_cardsImg_mastery {
        margin-bottom: -16px;
    }
    
    /* Position tooltip above the element */
    [data-crtooltip]:before {
        font-size: 11px;
        width: 85px;
    }
}

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

    .playerBattle_emblem {
        left: 95.5%;
    }

    .playerBattle_boatBattleShields {
        margin-top: 3em !important;
    }

    .mainPage_gameWrapper {
        width: calc(100% - 2em) !important;
    }

    .coc_armyLevelPreview_wrapper {
        max-width: 100%;
    }
}

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

    .chest {
        width: 70%;
    }

    .chestWrapper {
        width: 22%;
    }

    .playerBattle_cards {
        width: 22.5%;
    }

    .raceLogHideImg {
        display: none !important;
    }

    .playerBattle_boatBattleShieldsNumber {
        top: 58px;
    }

    .clanSearchWrapper2 {
        width: calc(50% - 2em) !important;
    }

    .clanSearchWrapper3 {
        width: calc(50% - 2em) !important;
    }

    .clanSearchWrapper4 {
        width: calc(50% - 2em) !important;
    }

    .clanSearchWrapper5 {
        width: calc(50% - 2em) !important;
    }

    .tabs {
        height: 190px;
    }

    .tabs .tab {
        height: 190px;
    }

}

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

    .currentDeck {
        height: 75%;
    }

    .currentDeck_cards {
        width: 20%;
    }

    .playerCards_cards {
        width: 14%;
    }

    .deckStats_cards {
        width: 20%;
    }

    .cardHeader_description {
        width: 75%;
    }

    .playerBattle_emblem {
        left: 94%;
    }

    .playerBattle_trophyChange {
        left: 92%;
    }

    .playerBattle_boatBattleShieldsNumber {
        font-size: 3.5rem;
        top: 56px;
    }

    .raceStatsPadding2 {
        padding-left: 25px
    }

    .hero-slider {
        height: 22rem;
    }

    .hero-slider .carousel-cell {
        height: 22rem;
    }

    .flickity-prev-next-button {
        display: none;
    }

    .trackingButtonWrapper {
        width: calc(50% - 2em) !important;
    }
}

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

    .clanSearchWrapper {
        width: calc(100% - 2em) !important;
    }

    .coc_armyWrapper {
        width: calc(100% - 2em) !important;
    }

    .cards_cardWrapper {
        width: calc(100% - 2em) !important;
        height: 240px;
    }

    .clanRecruitmentWrapper {
        width: calc(100% - 2em) !important;
    }

    .currentRiverRace_title {
        font-size: 1.6rem;
        margin: .5rem 0 .2rem 0;
    }

    .leaderboard_title {
        font-size: 2rem;
        margin: 2rem 0 .2rem 0;
    }

    .leaderboard_title2 {
        font-size: 1.6rem;
        margin: .5rem 0 .2rem 0;
    }

    .playerBattle_cards {
        width: 22%;
    }

    .playerBattle_boatBattleShields {
        margin: 1.6em !important;
        margin-top: 2em !important;
    }

    .playerBattle_boatBattleShieldsNumber {
        font-size: 3rem;
        top: 54px;
    }

    .tableRow_topPlayers {
        font-size: 85%;
    }

    .tabs {
        height: 150px;
    }

    .tabs .tab {
        height: 150px;
    }

    .tableRow_clan_badge5 {
        max-width: 18px !important;
        /* padding-right: 5px; */
    }
}

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

    .hideMobile2 {
        display: none !important;
    }

    .showMobile2 {
        display: block !important;
    }

    .navbarLogo {
        height: 55px;
        padding: 3px 0;
        padding-right: 10px;
    }

    .navbarGameLogo {
        height: 55px;
        padding: 3px 0;
        padding-left: 10px;
        /* border-left: rgb(185, 185, 185) solid 1px; */
    }

    .nav {
        height: 82px !important;
    }

    .mainHeader_navbar {
        padding-left: 10px;
        padding-right: 0;
        padding-top: 2px;
        margin-right: -5px;
        margin-bottom: -2px;
    }

    .container {
        width: 93%;
    }

    .playerSearch {
        width: 100%;
        height: 50px;
        margin: 0 !important;
        padding: 0;
    }

    .playerSearch_coc {
        width: 100%;
        height: 50px;
        margin: 0 !important;
        padding: 0;
    }

    .playerSearch2 {
        width: 93%;
        margin: 0 auto !important;
        /* padding: 0 10px; */
        height: 40px;
        border-radius: 5px;
    }

    .playerSearch4 {
        /* width: 93%; */
        margin: 0 auto !important;
        /* padding: 0 10px; */
        height: 40px;
        border-radius: 5px;
    }

    .searchText1 {
        font-size: 14px;
        margin: 0 !important;
        padding-bottom: 10px;
    }

    .searchText2 {
        font-size: 11.5px;
        margin: 0 !important;
        padding-bottom: 10px;
    }

    .searchText3 {
        font-size: 100%;
    }

    .playerHeader_badge {
        max-width: 60px !important;
        float: left;
        position: relative;
    }

    .playerHeader_badge2 {
        max-width: 60px !important;
        float: left;
        position: relative;
    }

    .playerHeader_badge_wrapper {
        max-width: 60px !important;
        float: left;
        position: relative;
    }

    .playerHeader_badge_coc {
        max-width: 50px !important;
        float: left;
        position: relative;
    }

    .playerHeader_name_coc {
        margin: 8px 0 0 0;
        font-family: 'supercell-magic';
        font-size: 16px;
        vertical-align: middle;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .rating-badge {
        max-width: 50px !important;
        float: left;
        position: relative;
    }

    .playerHeader_name {
        margin: 20px 0 0 0;
        font-family: 'supercell-magic';
        font-size: 16px;
        vertical-align: middle;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .playerHeader_stats {
        position: relative;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        /* padding-top: 10px; */
        width: 100%;
        font-family: 'Open Sans', sans-serif;
        font-size: 10px;
        font-weight: bold;
    }

    .player-details-top {
        font-weight: bold;
        margin: 0;
        font-family: 'Open Sans';
        font-size: 14px !important;
        line-height: 0;
        vertical-align: middle;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 5px;
        /* justify-content: center; */
    }

    .player-clan-details {
        font-weight: bold;
        margin: 0;
        font-family: 'Open Sans';
        font-size: 14px !important;
        line-height: 0;
        vertical-align: middle;
        height: 25px;
        align-items: center;
        /* justify-content: center; */
    }

    .playerStats {
        padding: 0 !important;
    }

    .cwrImg {
        margin: 0;
        padding-right: 5px;
        width: 30px;
    }

    .warWinImg {
        margin: 0;
        width: 18px;
    }

    .cdCardsImg {
        margin: 0;
        width: 25px;
    }

    .clanHeader_badge {
        max-width: 75px !important;
        float: left;
        position: relative;
        margin: 15px 0;
    }

    .clanHeader_badge_coc {
        max-width: 75px !important;
        float: left;
        position: relative;
        margin: 15px 10px 15px 0;
    }

    .clanHeader_name {
        margin: 18px 0 0 0;
        font-size: 16px;
    }

    .clanHeader_name_coc {
        margin: 18px 0 0 0;
        font-size: 16px;
    }

    .clanHeader_description {
        clear: both;
        position: relative;
        vertical-align: middle;
        margin-left: 5px;
        font-family: 'Open Sans', sans-serif;
        font-size: 13px;
        width: 340px;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .clanHeader_description2 {
        clear: both;
        position: relative;
        vertical-align: middle;
        margin-left: 5px;
        margin-top: 1rem !important;
        font-family: 'Open Sans', sans-serif;
        font-size: 13px;
        width: 340px;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .clanHeader_navbar {
        font-size: 13px;
    }

    .cardHeader_navbar {
        font-size: 13px;
    }

    /* .clanHeader_navbar ul li {
        padding: 4px 10px;  
    } */

    .clanHeader_navbar2 {
        font-size: 11px;
    }

    .clanHeader_navbar2 ul li {
        padding: 4px 0;
    }

    .playerHeader_navbar {
        font-size: 11px;
    }

    .playerHeader_navbar ul li {
        padding: 4px 10px;
    }

    .clanHeader_stats {
        position: relative;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding-bottom: 20px;
        width: 100%;
        font-family: 'Open Sans', sans-serif;
        font-size: .8rem;
        font-weight: bold;
    }

    .clanHeader_stats2 {
        position: relative;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding-top: 0;
        width: 100%;
        font-family: 'Open Sans', sans-serif;
        font-size: .8rem;
        font-weight: bold;
        margin-top: -.412rem;
        margin-bottom: .5rem;
    }

    .clanHeader_statsCaption {
        position: relative;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        width: 100%;
        font-family: 'Open Sans', sans-serif;
        font-size: .8rem;
        line-height: 1.4rem;
        font-weight: 400;
    }

    .clanStatsImg {
        height: 20px;
    }

    .clanStatsImg2 {
        height: 26px;
    }

    .clanStatsImgFlag {
        height: 20px;
    }

    .socialIcons {
        height: 35px;
    }

    .socialIcons2 {
        height: 25px;
    }

    .borderLeft {
        border-left: none;
    }

    .borderLeft3 {
        border-left: none;
    }

    .clanRatingModalHeader {
        font-size: 22px;
        font-weight: bold;
    }

    .clanRatingModalText {
        font-size: 12px;
    }

    .clanRatingModalText2 {
        font-size: 12px;
    }

    .warBattlesOutcome {
        height: 25px;
    }

    .raceStatsPadding {
        padding-left: 10px
    }

    .raceStatsPadding2 {
        padding-left: 0;
        /* padding-left: 5px; */
    }

    .currentWarClanName {
        padding-left: 8px;
        /* font-size: 85%; */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .paddingRight {
        padding-right: 8px;
    }

    .currentDeck {
        height: 75%;
    }

    .currentDeck_cards {
        width: 22%;
    }

    .playerCards_cards {
        width: 22%;
    }

    .redX {
        width: 75px;
    }

    .autocomplete {
        width: 17.5em;
        margin-left: 90px;
    }

    .autocomplete2 {
        width: 17.5em;
        /* margin-left: 90px; */
    }

    .playerSearchInput2 {
        width: 55.8% !important;
    }

    .playerSearchInput4 {
        font-size: 130% !important;
        padding-left: 10px !important;
        width: 77.3% !important;
    }

    .playerSearchInput5 {
        font-size: 130% !important;
        padding-left: 10px !important;
        width: 77.3% !important;
    }

    .warStandingsClanName {
        padding-left: 5px;
    }

    .warLogChart {
        height: 300px !important;
    }

    #myChart {
        min-height: 275px;
    }

    .td_warLog {
        padding: 5px 5px !important;
    }

    .clanTrackingWarning {
        font-size: 12px;
        width: 85%;
    }

    .mainPage_logo {
        width: 90%;
    }

    .workInProgress_logo {
        width: 55%;
    }

    .clanSearchPage_logo {
        width: 80%;
    }

    .stats {
        padding: 0 !important;
        font-size: 8px;
    }

    .stats2 {
        padding: 0 !important;
        font-size: 8px;
    }

    .openInGameButton {
        font-size: 1.5rem;
    }

    .tableRow_war_badge {
        max-width: 35px !important;
        vertical-align: middle;
        display: none;
        /* padding-right: none !important; */
    }

    .tableRow_clan3 {
        font-size: 85%;
    }

    .playerCards_select {
        width: 60% !important;
    }

    .playerStarLevel {
        width: 15%;
        vertical-align: middle;
    }

    .playerStarLevel2 {
        width: 15%;
        margin-left: 5px;
        vertical-align: middle;
    }

    .playerCards_starLevel {
        width: 15%;
        vertical-align: middle;
        margin-bottom: 1px;
    }

    .playerCards_starLevel2 {
        width: 15%;
        margin-left: 5px;
        vertical-align: middle;
        margin-bottom: 1px;
    }

    .playerCards_notGold {
        padding-bottom: 1px;
    }

    .starLevelPreview {
        position: relative;
        margin: 0 10px 10px 10px;
        max-width: 23rem !important;
    }

    .cardHeader_img_wrapper {
        text-align: center;
    }

    .cardHeader_img_wrapper2 {
        display: inline-block;
        position: relative;
    }

    .cardHeader_img {
        max-width: 14rem !important;
        float: none !important;
        position: relative;
        margin-top: 0 !important;
        margin-right: 0 !important;
    }

    .coc_armyHeader_img {
        max-width: 14rem !important;
        float: none;
        position: relative;
        margin-top: 0 !important;
        margin-right: 0 !important;
    }

    .cardHeader_elixir {
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(https://clashratings.com/img/cr-cards/elixir.png);
        width: 3.5rem;
        height: 3.5rem;
        color: #fff;
        font-size: 1.9rem;
        font-family: 'supercell-magic';
        line-height: 50px;
        padding: .1rem .45rem .2rem 0;
        text-align: center;
        vertical-align: middle;
        /* text-shadow: 0 1px 3px #000; */
        font-weight: 700;
        position: absolute;
        top: -10px;
        left: -5px;
    }

    .cardHeader_name {
        margin: 30px 0 30px 0;
        font-family: 'supercell-magic';
        font-size: 1.9rem;
        text-overflow: ellipsis;
        overflow: hidden;
        line-height: 28px;
        /* padding-left: 10px; */
    }

    .coc_armyHeader_name {
        margin: 30px 0 20px 0;
        font-family: 'supercell-magic';
        font-size: 1.9rem;
        text-overflow: ellipsis;
        overflow: hidden;
        line-height: 28px;
        /* padding-left: 10px; */
    }

    /* .cardHeader_type_wrapper {
        padding-top: 25px;
    } */

    .cardHeader_type {
        clear: both;
        margin: 0;
        font-family: 'Open Sans', sans-serif;
        font-size: 1.3rem;
        font-weight: bold;
        margin-top: 8px;
        text-align: center;
    }

    .cardHeader_description {
        clear: both;
        position: relative;
        vertical-align: middle;
        margin-left: 5px;
        font-family: 'Open Sans', sans-serif;
        font-size: 1.1rem;
        font-weight: bold;
        width: 100%;
        line-height: 1.5;
        margin-top: 20px;
    }

    .crElixir3 {
        width: 1.6rem;
        height: 1.6rem;
        color: #fff;
        font-size: 0.75rem;
        font-family: 'supercell-magic';
        line-height: 22px;
        padding: .1rem .2rem .2rem 0;
        text-align: center;
        vertical-align: middle;
        text-shadow: 0 1px 3px #000;
        font-weight: 700;
        position: absolute;
        top: 0;
        left: 0;
    }

    .crElixir4 {
        padding: .1rem .3rem .2rem .1rem;
    }

    .playerRank1 {
        width: 100%;
        /* height: 1.6rem; */
        color: #fff;
        font-size: 0.9rem;
        font-family: 'supercell-magic';
        /* line-height: 22px; */
        /* padding: .1rem .2rem .2rem 0; */
        text-align: center;
        vertical-align: middle;
        text-shadow: 0 1px 3px #000;
        font-weight: 700;
        position: absolute;
        top: 20px;
        /* left: 0; */
        padding-left: 0.6rem;
        padding-right: 0.5rem;
    }

    .currentClan {
        position: relative;
        outline: 1px solid rgba(0, 0, 0, 0.2);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.2) 100%);
        box-shadow: none;
    }

    .currentRiverRace_stats {
        padding-bottom: 20px;
        font-size: 14px;
    }

    .currentRiverRace_statsCaption {
        font-size: .8rem;
        line-height: 1rem;
    }

    .playerBattle_vsCaption {
        font-size: 1rem;
    }

    .playerBattle_cards {
        width: 20.5%;
    }

    .playerBattle_cardLevels::before {
        content: "";

    }

    .playerBattle_info2 {
        font-size: 1.1rem;
    }

    .playerBattle_outcome {
        margin-top: 2PX;
    }

    .playerBattle_emblem {
        left: 89%;
    }

    .playerBattle_trophyChange {
        left: 90%;
    }

    .playerBattle_type {
        font-size: 16px;
    }

    .playerBattle_challengeWins {
        font-size: 14px;
    }

    .playerBattle_boatBattleShieldsTitle {
        font-size: 10px;
    }

    .playerBattle_boatBattleShieldsNumber {
        font-size: 3rem;
        top: 50px;
    }

    .clanSearchWrapper2 {
        height: 72px;
    }

    .clanSearchWrapper3 {
        height: 100px;
    }

    .clanSearchWrapper4 {
        height: 142px;
    }

    .clanSearchWrapper5 {
        height: 188px;
    }

    .locationId_select {
        font-size: 130%;
    }

    .coc_armyLevelPreview_div {
        /* flex: 1 0 calc(33% - 20px); */
        margin: 15px 5px 20px 5px;
        /* font-size: 0.9rem; */
    }

    .coc_armyLevelPreview_div2 {
        /* flex: 1 0 calc(33% - 20px); */
        margin: 15px 5px 20px 5px;
        /* font-size: 0.9rem; */
    }

    .divEight {
        flex: 1 0 calc(25% - 20px);
    }

    .divFour {
        flex: 1 0 calc(50% - 20px);
    }
}

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

    .playerBattle_boatBattleShieldsNumber {
        font-size: 2.8rem;
        top: 50px;
    }

    .hero-slider .carousel-cell .inner .background {
        background-color: #bfbfbf75;
        padding: 0 5px 0 8px;
    }

    .playerCWRImg {
        width: 17px;
        height: 17px;
        background-size: 17px 17px;
        line-height: 18px;
        font-size: 7.5px;
    }
    
    [data-crtooltip]:before {
        font-size: 12px;
    }

}

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

    .playerBattle_trophyChange {
        left: 88%;
    }

    .playerBattle_boatBattleShieldsTitle {
        font-size: 6px;
    }

    .playerBattle_boatBattleShields {
        margin: 1em !important;
        margin-top: 1.2em !important;
    }

    .playerBattle_boatBattleShieldsNumber {
        font-size: 2.1rem;
        top: 30px;
        padding-left: 0.9rem;
    }

    .trackingButtonWrapper {
        width: calc(100% - 2em) !important;
    }

}

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

    .clanSearchWrapper2 {
        width: calc(50% - 1em) !important;
        margin-left: 0.5em !important;
        margin-right: 0.5em !important;
    }

    .clanSearchWrapper3 {
        width: calc(50% - 1em) !important;
        margin-left: 0.5em !important;
        margin-right: 0.5em !important;
        height: 100px;
    }

    .clanSearchWrapper4 {
        width: calc(50% - 1em) !important;
        margin-left: 0.5em !important;
        margin-right: 0.5em !important;
        height: 132px;
    }

    .clanSearchWrapper5 {
        width: calc(50% - 1em) !important;
        margin-left: 0.5em !important;
        margin-right: 0.5em !important;
        height: 166px;
    }

    .clanSearch_resultsName2 {
        margin-top: 0px !important;
        font-size: 13px !important;
    }

    .playerHeader_clan2 {
        margin-left: -.75rem !important;
        clear: both;
        padding-top: 5px;
        margin-bottom: -10px !important;
    }

    .playerHeader_badge2 {
        max-width: 0px !important;
        float: left;
        position: relative;
    }

    .player-clan-details {
        font-size: 12px !important;
    }

    .tabs {
        height: 110px;
    }

    .tabs .tab {
        height: 110px;
    }

    .flickity-row {
        margin-top: 1rem;
    }

    .flickity-column {
        padding: 0 1rem 0 1rem;
    }

    .hero-slider {
        height: 20rem;
    }

    .hero-slider .carousel-cell {
        height: 20rem;
    }

    .hero-slider .carousel-cell .inner {
        font-size: 2.2rem;
        line-height: 2.5rem;
        -webkit-text-stroke-width: 0.2px;
        -webkit-text-stroke-color: #000000ba;
    }

    .hero-slider .carousel-cell .inner .subtitle {
        font-size: 1.4rem;
    }

    .hero-slider .carousel-cell .inner .flickity-btn {
        font-size: 0.9rem;
    }

    /* .chestCount {
        min-width: 2.3rem;
        min-height: 2.3rem;
        color: #fff;
        font-size: 1rem;
        padding: 0.1rem 0.5rem 0.1rem 0.5rem;
        text-align: center;
        font-weight: 700;
        position: absolute;
        bottom: 10px;
        right: 5px;
    } */

}

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

    .playerBattle_trophyChange {
        left: 84%;
    }

    .playerBattle_copyDeck2 {
        left: 20%;
    }

    .tabs {
        height: 100px;
    }

    .tabs .tab {
        height: 100px;
    }

}

/* TEXT FORMATS */
.txt-large {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
}

.txt-large2 {
    font-family: 'Supercell-Magic', sans-serif;
    font-size: 1.75rem;
}

.txt-large3 {
    font-family: 'Supercell-Magic', sans-serif;
    font-size: 1.4rem;
}

.txt-medium {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.txt-medium2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.txt-small {
    font-size: 1.5rem;
    line-height: 1.4rem;
    font-weight: 400;
}

.txt-mini {
    font-size: .7rem;
    line-height: 1.4rem;
    font-weight: 400;
}

.txt-extra-mini {
    font-size: .7rem;
    line-height: .6rem;
}