﻿@-webkit-viewport {
    width: device-width
}

@-moz-viewport {
    width: device-width
}

@-ms-viewport {
    width: device-width
}

@-o-viewport {
    width: device-width
}

@viewport {
    width: device-width
}

html {
    margin: 0 auto;
    padding: 0;
    height: 100%;
    background-color: #f9f9f9;
    color: black;
    transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}

    html.dark {
        background-color: #222;
        color: whitesmoke;
    }

body {
    margin: 0 auto;
    padding: 0;
    height: 100%;
    max-width: 1900px;
    font-family: "Saira", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 14px;
}

header {
    padding: 12px;
    background-color: #fff;
    transition: background-color linear 300ms;
}

html.dark header {
    background-color: #262626;
}

div.menubar {
    white-space: nowrap;
}

div#clock {
    margin-left: 16px;
    margin-top: 6px;
}

div.telefon {
    background-image: url(/assets/static/telephone.png);
    background-repeat: no-repeat;
    padding-left: 60px;
    height: 64px;
    transition: background-image 300ms;
    white-space: nowrap;
    vertical-align: middle;
    display: table-cell;
    line-height: 2;
}

html.dark div.telefon {
    background-image: url(/assets/static/phone.dark.svg);
}


#chkDark {
    display: none;
}

#themeswitcher {
    display: table-cell;
    cursor: pointer;
    vertical-align: middle;
    height: 32px;
    white-space: nowrap;
}

    #themeswitcher::before {
        display: inline-flex;
        content: url(/assets/static/dark.svg);
        vertical-align: middle;
    }

    #themeswitcher.dark::before {
        display: inline-flex;
        content: url(/assets/static/light.svg);
    }

    #themeswitcher::after {
        font-size: 14px;
        font-weight: 500;
        vertical-align: middle;
        margin-left: 6px;
        content: "Koyu tema";
    }

    #themeswitcher.dark::after {
        content: "Açık tema";
    }

    #themeswitcher img {
        width: 16px;
        height: 16px;
    }

.ibm-plex-mono-thin {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: normal;
}

.ibm-plex-mono-thin-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: italic;
}

.ibm-plex-mono-extralight {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: normal;
}

.ibm-plex-mono-extralight-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: italic;
}

.ibm-plex-mono-light {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: normal;
}

.ibm-plex-mono-light-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: italic;
}

.ibm-plex-mono-regular {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

.ibm-plex-mono-regular-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: italic;
}

.ibm-plex-mono-medium {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: normal;
}

.ibm-plex-mono-medium-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: italic;
}

.ibm-plex-mono-semibold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: normal;
}

.ibm-plex-mono-semibold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: italic;
}

.ibm-plex-mono-bold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: normal;
}

.ibm-plex-mono-bold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: italic;
}




span.logo {
    font-size: 26px;
    font-weight: 600;
}

span.slogan {
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

a, a:visited, a:active {
    text-decoration: none;
    color: brown;
}

html.dark a, html.dark a:visited, html.dark a:active {
    color: burlywood;
}

a:hover {
    text-decoration: underline;
}

a.menu {
    color: purple;
    padding: 6px;
    font-weight: 500;
    border-radius: 6px;
    transition: color 300ms;
}

html.dark a.menu {
    color: #d8b1ff;
}

    a.menu.active, html.dark a.menu.active {
        background: #af2fdd;
        color: white;
        cursor: default;
    }


        a.menu.active:hover {
            text-decoration: none;
        }

div.pwrapper {
    text-align: center;
    margin: 0 auto;
    display: table;
}

table.pt {
    display: inline-block;
    vertical-align: top;
    margin: 20px 12px;
    border-spacing: 0;
    background-color: white;
    border: 1px #e8e8e8 solid;
    border-radius: 9px;
    padding: 12px 20px 20px 20px;
    box-shadow: 0px 1px 6px #4d4d4d;
    transition: background-color 400ms;
}

html.dark table.pt {
    background-color: #222222;
    border: 1px #040404 solid;
    box-shadow: 0px 1px 6px #1e0f20;
}

table.pt > tbody > tr {
    background-color: white;
    transition: background-color 400ms;
}

html.dark table.pt > tbody > tr {
    background-color: #222222;
    transition: background-color 400ms;
}

table.pt > tbody > tr:hover {
    background-color: #e3e3e3;
}



.ptitlerow > th {
    border-bottom: 1px #c8c8c8 solid;
}

table.pt > thead > tr > th {
    font-weight: 500;
    padding: 0 20px;
}

table.pt > tbody > tr > td {
    text-align: center;
    border-bottom: 1px #e6e6e6 solid;
    transition: border-bottom-color 300ms;
}

html.dark table.pt > tbody > tr > td {
    border-bottom-color: #373737;
}

img.rasset {
    width: 32px;
    height: 32px;
    margin-top: 6px;
    margin-right: 3px;
    border-radius: 50%;
    /*outline: 1px #e1e1e1 solid;*/
}

html.dark img.rasset {
    outline: none;
}

table.sembol {
    /*margin: 0 20px 0 0;*/
}

    table.sembol td {
        text-align: left;
    }

    table.sembol span {
        display: block;
    }

    table.sembol .stitle {
        font-weight: 500;
        white-space: nowrap;
        font-size: 16px;
    }

    table.sembol .sdesc {
        font-size: smaller;
        margin-top: -6px;
        white-space: nowrap;
    }

span.ptitle {
    font-size: 20px;
    font-weight: 400;
    margin-left: 12px;
}


table.pwrapper {
    margin: 0 auto;
}


section#content {
    background-color: #f9f9f9;
    border-top: 1px #e8e8e8 solid;
    transition: background-color linear 300ms;
    min-height: calc(100% - 280px);
}

html.dark section#content {
    border-top: 1px #4b4b4b solid;
    background-color: #2d2d2d;
}

table.pwrapper > tbody > tr > td {
    vertical-align: top;
}

td.s {
    text-align: right !important;
}

    td.s.c {
        text-align: center !important;
    }

    td.s > span {
        font-size: 18px;
        padding: 0 12px;
        font-family: "Sono", monospace;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-variation-settings: "MONO" 1;
        text-align: right;
        transition: background-color ease-in-out 100ms;
    }

        td.s > span.u {
            /*color: #01b501;*/
            background-color: rgba(1,181,1,.1);
        }

        td.s > span.d {
            /*color: #e81515;*/
            background-color: rgba(232,21,21,.1);
        }


    td.s.c > span {
        font-family: "M PLUS Code Latin", monospace;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-variation-settings: "wdth" 100;
        font-size: 16px;
        border-radius: 6px;
        padding: 1px 6px;
        margin-right: 20px;
    }


        td.s.c > span.u {
            color: white;
            /* background-color: #01b501; */
            transition: color ease-out 300ms;
            color: #01b501;
        }

            td.s.c > span.u::before {
                content: '%+'
            }

        td.s.c > span.d {
            /* color: white; */
            /* background-color: #e11515; */
            transition: background-color 300ms;
            color: #e11515;
        }


            td.s.c > span.d::before {
                content: '%'
            }

div#news {
    /*margin: 30px auto;*/
    padding: 6px 12px;
}

/*div#news > table*/ table.details {
    /* display: block;
        min-width: 350px;
        max-width: 48%; */
    max-width: 98%;
    min-width: 340px;
    vertical-align: top;
    margin: 20px auto;
    border-spacing: 9px;
    background-color: white;
    padding: 0 12px;
    font-size: 14px;
    border: 1px #dfdfdf solid;
}

    /*div#news > table*/
    table.details > thead th {
        border-bottom: 1px black solid;
        background: linear-gradient(to bottom, rgba(242,242,244,1) 0%,rgba(229,227,237,1) 37%,rgba(208,201,221,1) 100%);
        border-top-right-radius: 12px;
        border-top-left-radius: 12px;
    }


html.dark /*div#news > table*/ table.details > thead th {
    border-bottom: 1px #747474 solid;
    background: linear-gradient(to bottom, rgb(92, 42, 128) 0%,rgb(54, 22, 81) 37%,rgb(21, 12, 38) 100%);
}

html.dark /*div#news > table*/ table.details {
    background-color: #222222;
    border: 1px solid black;
}

table.news th {
    font-weight: 400;
    text-align: left;
    vertical-align: top;
    padding: 9px 12px 0 0;
}

    table.news th div {
        white-space: nowrap;
    }

/*table.news td {
    padding: 9px 0;
}*/

table.details th, table.details td {
    border-bottom: 1px solid #e4e4e4;
}

html.dark table.details th, html.dark table.details td {
    border-bottom: 1px solid #333333;
}

table.calendar th {
    text-align: left;
}
/*.tabheader ul {
    border-bottom: 1px #797979 solid;
    margin: 0;
    padding: 0;
}

.tabheader li {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 6px 20px;
    margin: 0;
    background: linear-gradient(to bottom, rgba(254,254,254,1) 0%,rgba(209,209,209,1) 49%,rgba(219,219,219,1) 50%,rgba(226,226,226,1) 100%);*/ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/*color: black;
    height: 24px;
}

html.dark .tabheader li {
    background: linear-gradient(to bottom, rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%);*/ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/*color: whitesmoke;
}

    .tabheader li.selected, html.dark .tabheader li.selected {
        background: linear-gradient(to bottom, rgba(229,112,231,1) 0%,rgba(200,94,199,1) 47%,rgba(168,73,163,1) 100%);*/ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/*font-weight: 500;
        color: white;
    }

.tabheader li span {
    background-repeat: no-repeat;
    padding-left: 30px;
}*/
/*div#news > table*/ table.details > thead div {
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: 32px;
    padding-left: 40px;
    font-size: 18px;
    font-weight: 500;
    height: 40px;
    display: table-cell;
    vertical-align: middle;
}

div.newstitle {
    color: black;
    font-weight: 600;
}

html.dark div.newstitle {
    color: #d9f4ff;
}

table.news a {
    font-style: italic;
    font-size: 12px;
}

.timestamp {
    color: #595959;
    font-size: 12px;
    font-style: italic;
}

html.dark .timestamp {
    color: #b3b3b3;
}

img.cat {
    width: 48px;
    height: 48px;
    padding-right: 12px;
    vertical-align: middle;
}

div.importance {
    white-space: nowrap;
}

    div.importance > img {
        width: 16px;
        height: 16px;
        margin-right: 3px;
    }

div.rp {
    margin-right: 12px;
}

span.casset {
    white-space: nowrap;
}

img.flag {
    border: 1px black solid;
    width: 22px;
    height: 16px;
    border-radius: 4px;
    margin-right: 2px;
}

html.dark img.flag {
    border-color: #555;
}

tr.loww {
    text-align: center;
    display: none;
}

    tr.loww div.menubar {
        margin-top: 6px;
    }

@media only screen and (max-width: 1200px) {
    #topmenu {
        display: none;
    }

    tr.loww {
        display: table-row;
    }
}

@media only screen and (max-width: 1000px) {
    /*    div.telefon {
        background-size: 36px;
        padding-left: 40px;
    }*/

    a.hide1 {
        display: none;
    }
}

div.mwrapper {
    position: relative;
}

    div.mwrapper > img.close {
        position: absolute;
        right: -42px;
        top: 2px;
        width: 22px;
        height: 22px;
        cursor: pointer;
    }

table.mobileappad {
    margin: 20px auto 30px auto;
    border: 1px #c603a7 solid;
    border-collapse: collapse;
    border-radius: 12px;
    padding: 12px 30px;
    /* background: white; */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(243,243,243,1) 44%,rgba(237,237,237,1) 67%,rgba(255,255,255,1) 100%);
    transition: background linear 300ms;
    box-shadow: 3px 3px 6px #bd63f0;
}

    table.mobileappad.hidden > tbody, table.mobileappad.hidden > tfoot {
        display: none;
    }

    table.mobileappad > tbody td, table.mobileappad th {
        padding: 12px 60px;
    }

    table.mobileappad td.sep {
        padding: 0;
    }

    table.mobileappad > tbody td {
        text-align: center;
    }

    table.mobileappad span {
        font-weight: 500;
        font-size: 14px;
        font-style: italic;
    }


html.dark table.mobileappad {
    border: 1px #484848 solid;
    background: linear-gradient(to bottom, rgba(76,76,76,1) 0%,rgba(13,13,13,1) 30%,rgba(1,1,1,1) 43%,rgba(10,10,10,1) 59%,rgba(48,48,48,1) 87%,rgba(27,27,27,1) 100%);
}

table.mobileappad i {
    font-weight: 500;
}

td.mobilalt {
    text-align: center;
    padding: 12px 30px 20px 30px;
    font-size: 14px;
}

td.sep {
    width: 1px;
    background-color: #acacac;
}

html.dark td.sep {
    background-color: #6f6f6f;
}

table.mobileappad span.mobilad {
    display: none;
}

table.mobileappad.hidden span.mobilad {
    display: inline;
}



span.mobilad {
    color: darkmagenta;
}

html.dark span.mobilad {
    color: #ba99ff;
}

img.ios {
    height: 50px;
    width: auto;
}

img.android {
    height: 65px;
    width: auto;
}

span.apptype {
    color: cornflowerblue;
}

html.dark span.apptype {
    color: aquamarine;
}


div.iletisim {
    padding: 20px;
}

    div.iletisim h1 {
        font-size: 24px;
        font-weight: 800;
        padding: 0 0 12px 0;
        margin: 0;
    }


    div.iletisim h2 {
        font-size: 20px;
        font-weight: 600;
        padding: 0;
        margin: 0;
    }

    div.iletisim h3 {
        font-size: 18px;
        font-weight: 500;
        padding: 0;
        margin: 0;
    }

html.dark iframe {
    filter: invert(1);
}

.preview {
    background-color: #fff7ba;
    padding: 6px 20px 6px 64px;
    border-bottom: 1px black dashed;
    font-size: 14px;
    font-weight: 500;
    background-image: url(/assets/static/warning.svg);
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: auto 80%;
}

footer {
    /* position: fixed; */
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: black;
    background: linear-gradient(to bottom, rgba(69,72,77,1) 0%,rgba(0,0,0,1) 100%);
    color: whitesmoke;
    margin-top: 30px;
    box-shadow: 2px -1px 12px #56425e;
}

    footer > table {
        width: 100%;
        border-spacing: 12px 3px;
        border-collapse: separate;
        padding: 12px;
    }

    footer h1 {
        margin: 0;
        padding: 0;
        font-size: 16px;
        font-weight: 700;
    }

    footer h2 {
        margin: 0;
        padding: 0;
        font-size: 14px;
        font-weight: 600;
    }

    footer h3 {
        margin: 0;
        padding: 0;
        font-size: 12px;
        font-weight: 500;
    }

    footer a, footer a:visited, footer a:active {
        color: antiquewhite;
        font-size: 12px;
    }

html.dark footer a, html.dark footer a:visited, html.dark footer a:active {
    color: #eae85d;
}



html.dark footer {
    background: #723ba0;
    background: linear-gradient(to bottom, rgb(95, 50, 111) 0%,rgb(51, 5, 64) 50%,rgb(109, 36, 115) 100%);
    box-shadow: 2px -1px 12px #cb74ec;
}


table.bodyscroll > tbody {
    display: block;
    max-height: 160px;
    overflow-y: scroll;
}

    table.bodyscroll > thead, table.bodyscroll > tbody tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
/*
thead {
    width: 177px;
}

table {
    width: 200px;
}
*/

/*:root {
    scrollbar-color: #723ba0 rgb(46,54,69) !important;
    scrollbar-width: revert !important;
}*/


div.news {
    display: inline-block;
    width: 280px;
    height: 340px;
    overflow: auto;
    margin: 12px 9px;
    border: 1px #cac4cc solid;
    padding: 9px 20px;
    border-radius: 9px;
    text-align: left;
    background-color: white;
    box-shadow: 2px 2px 12px black;
    box-shadow-color: red;
    vertical-align: middle;
    transition: background-color ease-in-out 300ms, width ease-in-out 300ms, height ease-in-out 300ms;
}

    div.news:hover {
        height: 380px;
    }

html.dark div.news {
    border: 1px #58475e solid;
    box-shadow: 2px 2px 12px #6b81a4;
    background-color: #222222;
}

div.news table {
    border-collapse: collapse;
}

img.news {
    float: left;
    height: 90px;
    /* width: auto; */
    /* margin: 5px 6px 0 0px; */
    /* padding-right: 12px; */
    vertical-align: middle;
    outline: 1px purple solid;
    margin-left: 3px;
    margin-right: 12px;
}

div.tw {
    /* text-align: justify; */
    font-size: 18px;
    color: indigo;
    font-weight: 500;
}

html.dark div.tw {
    color: deepskyblue;
}

.ncat {
    color: brown;
    font-size: 14px;
    font-weight: 500;
}

html.dark .ncat {
    color: burlywood;
}

img.qr {
    width: 96px;
    height: 96px;
}

input.news {
    background-color: #f0f0f0;
    border: none;
    outline: none;
    color: #752bb3;
    padding: 3px 6px 3px 26px;
    border-radius: 3px;
    cursor: pointer;
    background-image: url(/assets/static/glass.svg);
    background-size: 16px 100%;
    background-repeat: no-repeat;
    background-position: 6px center;
    display: block;
    margin-bottom: 3px;
}


html.dark input.news {
    background-color: #110918;
    color: #cb8cff;
}

    input.news:hover, html.dark input.news:hover {
        color: #cc29e4;
    }


#newswrapper {
    display: none;
    position: fixed;
    background-color: #d3d3d3;
    left: calc(50% - 25px);
    right: calc(50% + 25px);
    top: calc(50% - 25px);
    bottom: calc(50% + 25px);
    outline: 2px #757575 solid;
    overflow: hidden;
    transition: width ease-in 1s, height ease-in 1s, left ease-in 1s, top ease-in 1s, right ease-in 1s, bottom ease-in 1s;
    border-radius: 3px;
}

    #newswrapper img.close {
        display: none;
    }


    #newswrapper.active {
        display: block;
        width: 64px;
        height: 64px;
        background-image: url(/assets/static/loading2.gif);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 64px 64px;
    }

    #newswrapper.shown img.close {
        display: block;
    }

    #newswrapper.shown {
        display: block;
        left: 20px;
        right: 20px;
        top: 60px;
        bottom: 40px;
        padding: 12px 3px 30px 12px;
    }

html.dark #newswrapper {
    background-color: #111111;
}

#newscontent {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

img.close {
    position: absolute;
    width: 32px;
    height: 32px;
    right: 12px;
    top: 12px;
    cursor: pointer;
}

.ad22 {
    position: fixed;
    /* left: calc(50% - 311px); */
    /* top: calc(50% - 300px); */
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(60,60,60,.9);
    z-index: 200;
    text-align: center;
    padding-top: 20px;
}

    .ad22 > img.close {
        position: absolute;
        width: 16px;
        height: 16px;
        right: 30px;
        top: 12px;
    }

    .ad22 > a {
        margin-top: -80px;
        display: block;
        background-color: rgba(0,0,0,0.5);
        color: #1cf21c;
        font-size: 30px;
        font-weight: 700;
    }

.form {
    border-collapse: separate;
    border-spacing: 20px 12px;
    border: 1px #a8a8a8 solid;
    margin: 20px auto;
    /* max-width: 500px; */
    padding: 20px 80px;
    background-color: white;
    transition: background-color ease-in 300ms;
}

html.dark .form {
    background-color: #242424;
    border: 1px #484848 solid;
}

.form > tbody > tr > th {
    text-align: right;
    vertical-align: top;
}

.form > thead > tr > th {
    text-align: center;
    padding: 12px;
    border-bottom: 1px black solid;
}

html.dark .form > thead > tr > th {
    border-bottom: 1px #bdbdbd solid
}

div.ibw {
    /* margin-bottom: 400px; */
    /* min-height: 600px; */
    /* display: table-row; */
    /* margin: 0 auto; */
}

    div.ibw > div {
        /* display: inline-block; */
        margin: 20px auto;
        /* vertical-align: top; */
    }

div.exp {
}

.helpdesk {
    background-color: #ececec;
    padding: 40px 60px;
    background-image: url(/assets/static/canlidestek.png);
    background-repeat: no-repeat;
    background-position: right center;
    max-width: 800px;
    margin: 9px auto;
    transition: background-color ease-in 300ms;
}

    .helpdesk h1 {
        padding: 0;
        margin: 0;
        font-size: 24px;
        font-weight: 600;
    }

    .helpdesk h2 {
        padding: 0;
        margin: 0;
        font-size: 14px;
        font-weight: 400;
        max-width: 500px;
    }

html.dark .helpdesk {
    background-color: #424141;
}

.helpdeskmethods {
    /*max-width: 760px;*/
    margin: 40px auto;
    text-align: center;
}

    .helpdeskmethods > a {
        display: inline-block;
        width: 160px;
        height: 160px;
        /* outline: 4px #bb9bbd solid; */
        text-align: center;
        vertical-align: top;
        margin: 12px 40px;
        padding: 20px 20px;
        /* border-radius: 50%; */
        /* background: #292929; */
        background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
    }

    .helpdeskmethods img {
        width: 64px;
        height: 64px;
        display: block;
        margin: 0 auto;
        margin-top: 32px;
    }

    .helpdeskmethods span {
        font-size: 14px;
        font-weight: 500;
    }


html.dark .helpdeskmethods > a {
    outline: 4px #584568 solid;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    box-shadow: 6px 6px 6px purple;
}

input, textarea {
    font-family: "Saira", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 14px;
    font-weight: 500;
    border: none;
    outline: 1px #640b64 solid;
    padding: 3px 6px;
    border-radius: 3px;
}

    input:focus, textarea:focus, html.dark input:focus, html.dark textarea:focus {
        outline: 2px solid #af2fdd;
    }

    input:active, textarea:active {
        outline: 2px solid deeppink;
    }

html.dark input, html.dark textarea {
    outline: 1px #828282 solid;
    background-color: #444444;
    color: antiquewhite;
}

div.catpcha {
    font-size: 12px;
    font-weight: 400;
    margin-top: 6px;
}

input[type="submit"] {
    background: #229d22;
    color: white;
    padding: 6px 12px;
    outline: 1px #126d12 solid;
    cursor: pointer;
}

html.dark input[type="submit"] {
    background: green;
    outline: 1px #0cae0c solid;
}

.wrapper {
    display: table;
    margin: 12px auto;
    vertical-align: top;
    text-align: center;
}


.box {
    position: relative;
    min-width: 300px;
    min-height: 120px;
    display: inline-block;
    margin: 6px 12px;
    vertical-align: top;
    padding: 20px;
    border-radius: 9px;
}

/*
    .box.bestof {
        margin-top: 48px;
    }

    .box.loser {
        background: linear-gradient(to bottom, rgba(169,3,41,1) 0%,rgba(143,2,34,1) 44%,rgba(109,0,25,1) 100%);
    }

    .box.winner {
        background: linear-gradient(to bottom, rgba(169,3,41,1) 0%,rgba(143,2,34,1) 44%,rgba(109,0,25,1) 100%);
    }
*/

.panel {
    background-color: #c9c1db;
}


.box.bestof.winner {
    background: rgba(0,155,0,.25);
    radial-gradient(ellipse at center, rgba(4, 167, 4, .5) 0%,rgba(48,205,25,.2) 70%,rgba(48,205,25,.1) 100%)
}

.box.bestof.loser {
    background: rgba(155,0,0,.25);
    background: radial-gradient(ellipse at center, rgba(207, 4, 4, .5) 0%,rgba(255,48,25,.2) 70%,rgba(255,48,25,.1) 100%);
}

div.title {
    font-size: 18px;
    padding: 12px;
}

    div.title > span {
        background-repeat: no-repeat;
        background-position: left center;
        /* padding-left: 60px; */
        background-size: auto 100%;
        padding: 6px 0px 6px 48px;
    }
/*.box.bestof > div.title {
    font-size: 16px;
    padding: 0;
    position: absolute;
    left: 30px;
    top: -36px;
    padding: 6px 20px 5px 20px;
    border-top-right-radius: 9px;
    border-top-left-radius: 9px;
    background: inherit;
    color: white;
    font-weight: 500;
}*/

div.symbol.round {
    position: relative;
    display: inline-block;
    width: 160px;
    height: 130px;
    border-radius: 9px;
    text-align: center;
    background: white;
    margin-top: 32px;
    margin: 32px 6px 0 6px;
    outline: 2px #f1f1f1 solid;
    transition: outline-color ease-out 500ms;
}

html.dark div.symbol.round {
    outline: 1px #515151 solid;
    background: #222;
}

.loser div.symbol.round:hover {
    /*background: linear-gradient(135deg, rgb(255, 0, 0) 0%,rgba(255, 0, 0, 0.8) 10%, rgba(255, 0, 0, .3) 50%, rgba(255, 0, 0, .2) 80%, rgba(255, 0, 0, .1) 100%);*/
    /*outline: 1px #ffaeae solid;*/
    outline-color: #f4d8d8;
}

.winner div.symbol.round:hover {
    /*background: linear-gradient(135deg, rgb(0, 155, 0) 0%,rgba(0, 155, 0, 0.8) 10%, rgba(0, 155, 0, .3) 50%, rgba(0, 155, 0, .2) 80%, rgba(0, 155, 0, .1) 100%);*/
    /*outline: 1px lightgreen solid;*/
    outline-color: #c8e8c8;
}

div.symbol.round > img {
    position: absolute;
    width: 48px;
    height: 36px;
    left: calc(50% - 24px);
    top: -24px;
    border-radius: 25%;
    background-color: white;
    outline: inherit;
}

html.dark div.symbol.round > img {
    background-color: #222;
}

div.symbol.round > div {
    display: table;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding-top: 30px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}


.symbol .change {
    background: green;
    display: inline-block;
    padding: 3px 12px;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 9px;
}

.code {
    /*font-size: 18px;*/
    font-weight: 600;
    padding-top: 0;
    /*text-shadow: -1px -1px 4px #000, 1px -1px 4px #000, -1px 1px 4px #000, 1px 1px 4px #000;*/
}


.loser .change {
    background: red;
    color: white;
}

.symbol .price {
    font-weight: 400;
    font-size: 18px;
    padding: 6px 0 0 0;
}

.symbol .stitle {
    font-weight: 400;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 138px;
    padding: 0 6px;
}

/*
div.symbol.round.loser, div.symbol.round.loser > img {
    background: radial-gradient(ellipse at center, rgba(169,3,41,1) 0%,rgba(143,2,34,1) 44%,rgba(109,0,25,1) 100%);
}

div.symbol.round.winner, div.symbol.round.winner > img {    
    background: radial-gradient(ellipse at center, rgba(169,3,41,1) 0%,rgba(143,2,34,1) 44%,rgba(109,0,25,1) 100%);
}
*/

/*.code.down {
    color: #f11;
}

.code.up {
    color: #6f6;
}
*/

a.uyum {
    display: block;
}