
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --white: #fff;
    --black: #000;
    --primary: #6C5DD3;
    --secondary: #fa3175;
    --background: #fff;
    --border: #E4E4E4;
    --text: #11142D;
    --text-light: #808191;
    --warning: #FF754C;
    --success: #7FBA7A;
    
    --family:"Noto Sans", "Roboto Condensed", sans-serif;
    --headings-family:"Roboto Condensed", sans-serif;
    
    --box-shadow: 0 0 15px 0 rgba(0,0,0,.05);
    
    --size: 15px;
    --line-height: 1.5;
    
    --line-height-headings: 1.3;
    --h1-size: 40px;
    --h2-size: 35px;
    --h3-size: 30px;
    --h4-size: 26px;
    --h5-size: 24px;
    --h6-size: 20px;
}

/* Theme base styles */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

*, *:before, *:after {
  box-sizing: border-box;
}



html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



h1 {
  font-size: 2em;
  margin: 0.67em 0;
}


hr {
  box-sizing: content-box;
  height: 0;
}


pre {
  font-family:
  font-size: 1em;
}


abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}


code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em; 
}


small {
  font-size: 80%;
}



sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}


button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}


button,
select {
  text-transform: none;
}


button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}


button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0;
}


legend {
  padding: 0;
}


progress {
  vertical-align: baseline;
}



[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}



[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}


[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}


::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; 
}


details {
  display: block;
}

summary {
  display: list-item;
}

button,
.btn {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
}

button:disabled,
.btn:disabled{
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}


.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

.has-shadow:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 7px;
    right: 7px;
    bottom: -15px;
    z-index: -1;
    background: #F0F3F6;
    -webkit-filter: blur(43px);
    filter: blur(43px);
    border-radius: 24px;
    -webkit-transition: background .25s;
    -o-transition: background .25s;
    transition: background .25s;
}

body, input, textarea, select, button {
    font-family: var(--family);
}
body {
    font: var(--size)/var(--line-height) var(--family);
    margin: 0;
    padding: 0;
    background: var(--white);
    min-width: 320px;
}
a {
    color: var(--primary);
    text-decoration: none;
}
img {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    height: auto;
}
a, button, input[type="submit"] {
  cursor: pointer;
}

a, button, input, textarea, select {
  transition: all .3s ease-in-out; 
}


input, textarea {
    -webkit-appearance: none;
}
.field {
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid var(--border);
    border-radius: 6px;
    width: 100% !important;
    height: 54px;
    font-size: 14px;
    line-height: 18px;
    color: var(--text);
    background: #fff;
    display: block;
    padding: 12px 20px;
    margin: 0;
    font-weight: 500;
    outline: none !important;
    
    &:focus {
        border-color: var(--primary);
    }
    
}

.custom-select {
    position: relative;
    &:after {
        position: absolute;
        background: var(--white);
        width:25px;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 0;
        height: 100%;
        top: 0;
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        
    }
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--headings-family);
}

/* Headings */

h1,
.h1 {
  font-weight: 400; 
  font-size: var(--h1-size);
  margin: 0 0 var(--h1-margin);
  line-height: 1.12;
}



h2,
.h2 {
  font-weight: 400; 
  font-size: var(--h2-size);
  margin: 0 0 var(--h2-margin);
  line-height: 1.208;
}

h3,
.h3{
  font-weight: 400;
  font-size: var(--h3-size);
  margin: 0 0 var(--h3-margin);
  line-height: 1.5;
}

h4,
.h4 {
  font-weight: 700;
  color: #374843;
  font-size: 20px;
  font-size: var(--h4-size);
  text-transform: none;
  margin: 0 0 var(--h4-margin);
  line-height: 1.5;
}

h5,
.h5 {
  font-weight: 500;
  font-size: var(--h5-size);
  margin: 0 0 var(--h5-margin);
  line-height: 1.777;
}

h6,
.h6 {
  font-weight: 400;
  font-size: var(--h6-size);
  margin: 0 0 var(--h6-margin);
  line-height: 1.5;
}



#page, .wp-site-blocks {
    position: relative;
    overflow: hidden;
}
#page {
    padding-top: 50px;
    padding-left: 50px;
}
.icon {
    display: inline-block;
    vertical-align: top;
    width: 1em;
    height: 1em;
    font-size: 30px;
    line-height: 1;
    fill: var(--text-light);
    
}
.input-holder {
    position: relative;
    
    .icon {
        font-size: 20px;
        line-height: 1;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        + .field {
            padding-left: 32px;
        }
    }
}
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: var(--primary);
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 5px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
#wpadminbar {
    top: auto !important;
    bottom: 0 !important;
    
}
.wp-block-site-logo {
    position: relative;
    max-width: 50px;
    
}
.page-center {
    padding: 0 30px;
    max-width: 1260px;
    margin: 0 auto;
}
.wp-block-navigation {
    position: static;
    
    .wp-block-navigation__responsive-container-open,
    .wp-block-navigation__responsive-container-close{
        display: none;
        
        
    }
    
}
/* Header UI  */
.header-main {
    .topbar {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        display: flex;
        background: var(--text);
        align-items: center;
        padding: 20px 60px 20px 20px;
        gap: 30px;
        color: var(--text-light);
    }
    .topbar-content {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-grow: 1;
        flex-basis: 0;
    }
    .topbar-meta {
        display:flex;
        flex-shrink: 0;
    }
    .logo-wrap {
        width: 130px;
        flex-shrink: 0;
        
        img {
            height: 45px;
            width: auto;
        }
        
    }
    
    .wp-block-navigation {
    position: static;
    
    .wp-block-navigation__responsive-container-open,
    .wp-block-navigation__responsive-container-close{
        @media (max-width: 991px) {
            display: block;
        }
        
        
    }
    
}
}
.search-bar {
    flex-shrink: 0;
    flex-grow: 1;
    max-width: 700px;
    background: #fff;
    color: inherit;
    border-radius: 45px;
    margin: auto;
    padding-left: 25px;
    
    .games-autocomplete {
        display: flex;
        gap: 30px;
        position: relative;
        
        
        .field {
            border:0;
            color: inherit;
            background: none;
        }
        .input-holder {
            color: inherit;
            
            &:first-child {
                width: 170px;
                flex-shrink: 0;
                flex-grow: initial;
            }
            &:last-child {
                flex-grow: 1;
                flex-basis: 0;    
            }
            
        }
        
        .games-autocomplete-results {
            margin: 0;
            padding: 0;
            list-style: none;
            position: absolute;
            left: 0;
            top: 100%;
            width: 100%; 
            
            
          /*  &:before {
                  content: "";
    position: absolute;
    top: 0;
    left: 7px;
    right: 7px;
    bottom: -15px;
    z-index: -1;
    background: rgba(0,0,0,0.1);
    -webkit-filter: blur(22px);
    filter: blur(22px);
    border-radius: 24px;
    -webkit-transition: background .25s;
    -o-transition: background .25s;
    transition: background .25s;
            }*/
            
            li {
                padding: 10px 20px;
                display: flex;
                align-items: center;
            }
            
            img {
                width: 70px;
                height: 40px;
                flex-shrink: 0;
                object-fit: cover;
                margin: 0 15px 0 0;
            }
        }
    }
}
.nav {
    position: relative;
    flex-shrink: 0;
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        text-transform: uppercase;
        flex-flow: row nowrap;
        gap: 30px;
        font-size: 14px;
        
        > li {
            position: relative;
            
            &:hover > a, &.current-menu-item > a {
                color: var(--secondary);
            }
            > a {
                display: block;
                color: var(--white);
                font-weight: 600;
            }
        }
    }
}

.gtranslate_wrapper {
    position: relative;
    width: 150px;
    * {
        font-family: inherit !important;
    }
    .gt_options {
        position: absolute;
        right: 0;
        top: 100%;
        width: 100%;
    }
}


