@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

html, body {
    font-family: Arial;
}

.cursive {
    font-family: 'Dancing Script', cursive;
}

a {
    text-decoration: none;
    color: #1a73e8;
}

a:link{color: #1a73e8;}
a:active{color: #1a73e8;}
a:visited{color: #1a73e8;}
a:hover{color: #1a73e8;}

a:hover {
    text-decoration: underline;
}

.logo {
    color: black !important;
}

.logo:hover{
    text-decoration: none;
}

.logo-L {
    background-color: #228;
    color: white;
    border-radius: 50%;
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
}

h1 {
    text-align: center;
}

p {
    line-height: 1.5em;
}

li {
    line-height: 1.5em;
}

.lotto-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}

.lotto-list > div {
    background-color: #00ff9512;
    border-radius: 1em;
    padding: 1em;
    margin: 0em 0.5em 0.5em 0.5em;
    line-height: 1.75em;
    position: relative;
    padding-bottom: 2em;
    max-width: 30em;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 75%;
    max-height: 3em;
}

.unavailable {
    opacity: 0.5;
}

.name {
    text-transform: capitalize;
}

.verdict {
    text-align: center;
}

.share {
    position: absolute;
    left: 0.5em;
    bottom: 0.1em;
    cursor: pointer;
}

.updated {
    position: absolute;
    right: 0.5em;
    bottom: 0.1em;
}

.center {
    text-align: center;
    margin: 0 auto;
}

ol {
    padding-left: 1em;
}

img.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    margin-bottom: 1em;
    width: auto;
    height: auto;
    max-width: 100%;
}

@media (min-width: 400px) { 
    img.blog_img {
        max-width: 90%;
    }
}

@media (min-width: 768px) { 
    img.blog_img {
        max-width: 80%;
    }
}

.inline {
    display: inline-block;
}

.d-none {
    display: none !important;
}

.worth_it {
    color: green;
}

.not_worth_it {
    color: red;
}

.location_selector {
    margin: 1em;
}

.footer {
    margin: 1em;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    margin-bottom: 1em;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    height: 28px;
    line-height: 28px;
}

.twitter-follow-button {
    display: inline-flex;
    align-items: center;
    height: 28px;
    margin: 0;
    padding: 0;
}

.twitter-follow-button iframe {
    vertical-align: middle;
    border: none;
}

.blog {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 2em 1em;
}

.valign {
    vertical-align: middle;
}

/* select starting stylings ------------------------------*/
.select {
    --matter-helper-theme: var(--matter-theme-rgb,var(--matter-primary-rgb,33,150,243));
    --matter-helper-ontheme: var(--matter-ontheme-rgb,var(--matter-onprimary-rgb,255,255,255));
    /* font-family:
        'Roboto', 'Helvetica', 'Arial', sans-serif; */
    position: relative;
    width: 15em;
}

.select-text {
    position: relative;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    padding: 10px 10px 10px 0;
    font-size: 18px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

/* Remove focus */
.select-text:focus {
    outline: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

/* Use custom arrow */
.select .select-text {
    appearance: none;
    -webkit-appearance: none
}

.select:after {
    position: absolute;
    top: 18px;
    right: 10px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
}


/* LABEL ======================================= */
.select-label {
    color: rgba(0, 0, 0, 0.26);
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 10px;
    transition: 0.2s ease all;
}

/* active state */
.select-text:focus~.select-label,
.select-text:valid~.select-label {
    color: rgb(var(--matter-helper-theme));
    top: -20px;
    transition: 0.2s ease all;
    font-size: 14px;
}

/* BOTTOM BARS ================================= */
.select-bar {
    position: relative;
    display: block;
    width: 15em;
}

.select-bar:before,
.select-bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: rgb(var(--matter-helper-theme));
    transition: 0.2s ease all;
}

.select-bar:before {
    left: 50%;
}

.select-bar:after {
    right: 50%;
}

/* active state */
.select-text:focus~.select-bar:before,
.select-text:focus~.select-bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}