﻿html, body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    overflow: hidden;
}

body {
    background: url('/defaults/Background.png') no-repeat 100%;
    background-size: 100% 100%;
    background-color: var(--background1);
    font-family: Font;
    font-size: var(--font-size-default);
    color: var(--font-color);
    transition: opacity .2s;
}

h1 {
    color: var(--color1);
}

h2 {
    margin: 20px;
    color: var(--color1);
    font-size: 16pt;
}

h3 {
    margin: 20px;
    color: var(--color1);
    font-size: 14pt;
    letter-spacing: 0px;
    transition: letter-spacing .5s;
}

h4 {
    font-size: 10pt;
    margin: 0px;
}

a, .a {
    color: var(--color1);
    text-decoration:underline;
    cursor:pointer;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border: 1px solid transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color1);
    border-radius: 3px;
}

::-webkit-scrollbar {
    width: 15px;
    height: 15px;
}


.select2-container {
    min-width: 200px;
}

.select2-dropdown--below {
    margin-top: -35px;
}

.select2-search--dropdown {
    padding: 0px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    padding: 8px;
    border: none;
    outline: none;
}

input[type=text],
input[type=number],
input[type=password],
textarea {
    padding: 10px 15px;
    outline: none;
    border: none;
    background-color: var(--background2);
    border-bottom: 1px solid var(--background1);
    transition: var(--transition-color);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-small);
}

textarea {
    border-radius: var(--border-radius-small);
    box-shadow: var(--box-shadow);
    font-family: Font;
    font-size: var(--font-size-default);
}

    input[type=text]:hover,
    input[type=number]:hover,
    input[type=password]:hover,
    input[type=text]:focus,
    input[type=number]:focus,
    input[type=password]:focus {
        border-bottom: 1px solid var(--color1);
    }


input[type=text]:read-only,
input[type=number]:read-only,
input[type=password]:read-only,
textarea:read-only {
    background-color: var(--background-disabled2);
}

input[type=checkbox],
input[type=radio] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    background: var(--background2);
    border-radius: var(--border-radius-small);
    box-shadow: var(--box-shadow);
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: var(--transition-color);
}
.Box2 input[type=checkbox],
.Box2 input[type=text],
.Box2 input[type=number],
.Box2 input[type=password],
.Box2 textarea {
    background: var(--background1);
}

input[type=radio] {
    border-radius: 13px;
}

input[type=checkbox]:hover,
input[type=radio]:hover {
    box-shadow: var(--box-shadow-inset);
}

input[type=checkbox]:disabled {
    background: #E0E0E0 !important;
}

    input[type=checkbox]:checked,
    input[type=radio]:checked {
        background-image: url('/defaults/Check.png');
        background-repeat: no-repeat;
        background-size: 15px;
        background-position: center center;
        background-color: var(--color1);
    }

input[partially=true] {
    background-image: url(/defaults/checkbox_partially_checked.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.Delete {
    background: var(--color-error);
    color: var(--font-color-light);
    width: 19px;
    text-align: center;
    border-radius: var(--border-radius-small);
    padding: 3px;
    box-shadow: var(--box-shadow);
    cursor:pointer;
}
.Add {
    background: var(--color1);
    display: inline-block;
    text-align: center;
    width: 24px;
    border-radius: var(--border-radius-small);
    color: var(--font-color-light);
    box-shadow: var(--box-shadow);
    cursor: pointer;
    line-height: 24px;
}

.Error {
    position: absolute;
    font-size: 10pt;
    color: var(--color-error);
    font-style: italic;
}
.Error a {
    cursor:pointer;
    text-decoration:underline;
}

.TextClear {
    background-color: var(--color-fade);
    color: var(--font-color-light);
    float: right;
    padding: 15px;
    z-index: 18;
    padding-top: 16px;
    transition: var(--transition-color);
}
    .TextClear:hover {
        background-color: var(--color1);
    }

.PageDetails {
    padding: 16px;
    font-size: var(--font-size-small);
    font-style: italic;
    color: var(--font-color-fade);
}

.Table_Logs .Table_Cell {
    height: 19px;
    overflow: hidden;
    line-height: 24px;
    word-break: break-all;
}

.Table_Logs .Table_Header_Cell {
    cursor: pointer;
}

.Table_Logs_Selectable thead tr th:first-child .Table_Header_Cell {
    background: transparent;
    box-shadow: none;
    padding: 0px;
}

.TableCount {
    font-size: var(--font-size-small);
}

.Phebi_Coin {
    height: 13px;
    width: 20px;
    background: url(/defaults/Phebi_Coin.png) center center no-repeat;
    background-size: 13px 13px;
    display: inline-block;
    background-position: 2px 0px;
    overflow: visible;
}

.Login_Background {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url('/defaults/Background.png') no-repeat 100%;
    background-size: 100% 100%;
    background-color: var(--background1);
}

.Login {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-large);
    background: var(--background2);
    overflow: hidden;
    display: flex;
}

#lblLoginEULA {
    position: absolute;
    top:0px;
    left:0px;
    z-index:1000000;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    background: var(--background2);
    overflow: auto;
}
.EULA {
    padding: 40px;
}

.Login_Illustration {
    flex: 1;
    min-width: 380px;
    max-width: 380px;
    width: 380px;
    height: 400px;
    background: url('/defaults/login_illustration.png') no-repeat 100%;
    background-size: auto 100%;
    white-space: normal;
    color: var(--font-color-light);
    padding: 40px 20px;
    font-family: 'Font2';
    box-shadow: 0px 0px 2px 0px #000000;
}

.Login_Illustration_Headline {
    font-size: 24pt;
    margin: 40px 0px;
}

.Login_Illustration a {
    color: var(--font-color-light);
}

.Login_Illustration_Logos {
    width: 100%;
    text-align: center;
    margin-top: 60px;
}

.Login_Illustration_Logo {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 25px;
    background: #FFFFFF;
    text-align: center;
    margin: 0px 10px;
    cursor: pointer;
}

    .Login_Illustration_Logo img {
        height: 15px;
        margin-top: 8px;
    }

.Login_Illustration_SignUp {
    font-family: Font;
    text-align: center;
    font-size: var(--font-size-small);
    margin-top: 40px;
}

.Login_Form {
    flex: 1;
    padding: 40px;
    height: 100%;
}

    .Login_Form .Button {
        width: calc(100% - 80px);
        text-align: center;
    }

    .Login_Form .Login_ForgotPassword {
        font-size: var(--font-size-small);
        color: var(--font-color);
        cursor: pointer;
        padding: 5px;
    }

        .Login_Form .Login_ForgotPassword:hover {
            text-decoration: underline;
        }

.Login_Headline {
    font-size: 24pt;
    padding: 40px 5px;
    white-space: nowrap;
}

.Login_Form_TextBox {
    width: calc(100% - 80px);
    margin: 0px 20px;
}

    .Login_Form_TextBox .Login_Form_TextBox_Title {
        font-size: var(--font-size-small);
        color: var(--color1);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-position);
        transform: translate(9px, 25px);
    }

    .Login_Form_TextBox:focus-within .Login_Form_TextBox_Title {
        visibility: visible;
        transform: translate(0px, 0px);
        opacity: 1;
    }

    .Login_Form_TextBox input {
        width: 100%;
    }

.Button {
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px 10px 20px;
    background: var(--color1);
    color: var(--font-color-light);
    margin: 0px 0px 0px 10px;
    transition: background .5s;
    font-size: var(--font-size-small);
    border-radius: var(--border-radius-small);
    box-shadow: var(--box-shadow);
    font-family: 'Font2';
}

.Button_Cancel {
    background-color: var(--color-fade);
}

.Button_Disabled {
    background: var(--background-disabled);
    color: var(--font-color-light);
}
.Button_Delete {
    background: var(--color-error);
    color: var(--font-color-light);
}

.Icon {
    height: 50px;
    flex: 0;
    margin: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    cursor: pointer;
    background-color: var(--font-color-light);
}

.VectorIcon {
    cursor:pointer;
}
.VectorIcon path {
    transition: fill .2s;
    fill: var(--color2);
}
.VectorIcon:hover path {
    fill: var(--color1);
}

.IconButton,
.IconButton_Small {
    display: inline-block;
    cursor: pointer;
    border-radius: var(--border-radius-small);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-right: 20px;
    background-color: var(--background2);
}

    .IconButton img {
        background-color: var(--icon);
        transition: var(--transition-color);
        height: 50px;
    }

    .IconButton:hover img,
    .IconButton_Small:hover img,
    .IconButton_Active img {
        background-color: var(--icon-active);
    }

.IconButton {
    margin-right: 20px;
    height: 50px;
}
.IconButton_Text {
    font-size: 14pt;
    font-weight: bold;
    padding: 13px 0px;
    height: 24px;
    width: 50px;
    text-align: center;
}
.IconButton_Active {
    color: var(--icon-active);
}

.IconButton_Small,
.IconButton_Small img {
    height: 25px;
}

.IconButton_Large,
.IconButton_Large img {
    height: 75px;
    width: 75px;
}

.IconButton_Delete img,
.IconButton_Delete:hover img {
    background-color: var(--color-error);
}

.IconButton_Disabled img,
.IconButton_Disabled:hover img {
    background: var(--background-disabled);
    color: var(--font-color-light);
    opacity: .7;
}

.IconButtonGroup {
    border-radius: var(--border-radius-small);
    box-shadow: var(--box-shadow);
    margin-right: 20px;
    float: left;
    overflow: hidden;
}

    .IconButtonGroup .IconButton {
        box-shadow: none;
        border-radius: 0px;
        margin-right: 0px;
        border-left: 1px solid var(--background1);
        float: left;
    }

        .IconButtonGroup .IconButton:first-child {
            border-left: none;
        }

.PlayButton .IconButton {
    display: block !important;
    float: left !important;
    margin-right: 10px !important;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.PlayButton {
    background-color: var(--background-fade);
    display: inline-block;
    height: 50px;
    border-radius: var(--border-radius-small);
    color: var(--font-color-light);
    margin-right: 20px;
}

.PlayButton_Position,
.PlayButton_Duration {
    float: left;
    margin: 15px 0px;
}

.PlayButton_Duration {
    margin-right: 15px;
}

.Headline {
    background-color: var(--background2);
    box-shadow: var(--box-shadow);
    height: 50px;
    margin: 20px;
    flex: 1;
    border-radius: var(--border-radius);
    margin-left: 0px;
}

    .Headline .Logo {
        height: 30px;
        margin: 10px;
        float: left;
        cursor: pointer;
    }


.Content {
    height: calc(100% - 90px);
    overflow: auto;
}

.CreateProject_Preview {
    padding: 10px;
    min-height: 360px;
    max-height: 570px;
    width: 580px;
    display: inline-block;
    overflow: auto;
}

    .CreateProject_Preview table .IconButton_Delete {
        visibility: hidden;
    }

    .CreateProject_Preview table tr:hover .IconButton_Delete {
        visibility: visible;
    }

.Project {
    background-color: var(--background2);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    float: left;
    padding: 20px;
    margin: 20px;
    width: calc(100% - 80px);
    max-width: 300px;
    height: 125px;
    cursor: pointer;
    transition: var(--transition-box-shadow);
}
    .Project:hover {
        box-shadow: var(--box-shadow-hover);
    }

.Project_Add {
    font-size: 73pt;
    text-align: center;
    color: var(--color-fade);
    transition: var(--transition-color);
}

    .Project_Add:hover {
        color: var(--color1);
    }

.Project_Name {
    font-weight: bold;
    color: var(--color1);
    margin-bottom: 10px;
}
.Project_Id {
    font-size: 8pt;
    font-style: italic;
    color: var(--color-fade);
}

.Project_Features img {
    height: 20px;
    background-color: var(--icon);
}

.Project_Entries {
    height: 80px;
    overflow: hidden;
}

.Project_Entry_Count,
.Project_Entry_Spent {
    float: right;
    font-size: var(--font-size-small);
}
.Project_Entry_ERROR {
    float: right;
    font-size: var(--font-size-small);
    color: var(--color-error);
    font-weight: bold;
}
.Project_Entry_Warning {
    float: right;
    font-size: var(--font-size-small);
    color: var(--color-warning);
    font-weight: bold;
}

.Project_Entry_Progress {
    float: right;
    font-size: var(--font-size-small);
}

.Project_LatestEntry_Preview {
    min-height: 1px;
    width: calc(100% - 125px);
    float: left;
    font-size: var(--font-size-small);
    white-space: nowrap;
    overflow: hidden;
}

.Project_LatestEntry_Timestamp {
    font-size: var(--font-size-small);
}

.News {
    float: left;
    background-color: var(--background2);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    cursor: pointer;
    margin: 20px;
    width: 340px;
    height: 165px;
    background-size: 100%;
    color: #FFFFFF;
    font-family: Font2;
    padding: 0px;
    overflow: hidden;
}

.News_Image {
    width: 100%;
    height: 100%;
    background-size: 100%;
    filter: blur(1px) brightness(0.7);
    transition: var(--transition-color);
}

.News_Title {
    padding: 20px;
    transform: translate(0px, -100%);
    transition: var(--transition-color);
}

.News:hover .News_Image {
    filter: blur(0px) brightness(1);
}

.Navigation {
    z-index: 10;
    white-space: nowrap;
}

.Navigation_Group {
    display: inline-block;
    white-space: nowrap;
    margin-right: 0px;
    border-radius: var(--border-radius-small);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-top: 20px;
}

    .Navigation_Group:last-child {
        margin-right: 20px;
    }

.Navigation_Item {
    font-family: Font2;
    color: var(--font-color-fade);
    font-size: var(--font-size-small);
    padding: 0px;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition-color);
    background-color: var(--background2);
    overflow: hidden;
    margin-right: -2px;
    margin-bottom: -4px;
    height: 50px;
    width: 52px;
}

.Navigation_Item_Label {
    display: none;
}
.Navigation_Item_Count {
    position: absolute;
    transform: translate(38px, -60px);
    background: var(--notification-error-background);
    color: var(--notification-error-color);
    width: 20px;
    font-size: 8pt;
    padding: 3px 0px;
    text-align: center;
    border-radius: 9px;
    box-shadow: var(--box-shadow);
}

.Navigation_Item_Icon {
    height: 40px;
    background-color: var(--icon);
    margin: 5px;
    transition: var(--transition-color);
}

    .Navigation_Item_Active .Navigation_Item_Icon,
    .Navigation_Item_Icon:hover {
        background-color: var(--color1);
    }


.Navigation_Item:hover,
.Navigation_Item_Active {
    color: var(--color1);
}



table thead tr th {
    font-weight: bold;
    text-align: left;
    position: sticky;
    top: 0px;
    z-index: 2;
    font-size: var(--font-size-small);
    /*color: var(--font-color-fade);*/
    color: var(--color1);
    font-weight: normal;
    font-family: Font2;
}

.Table_NoStyle tr .Table_Cell,
.Table_NoStyle tr .Table_Header_Cell {
    background-color: inherit;
    border-radius: 0px;
    box-shadow: none;
    padding: 0px;
    min-height: auto;
    max-height: auto;
    overflow: visible;
}

table tr .Table_Cell,
table tr .Table_Header_Cell {
    background-color: var(--background2);
    border-radius: var(--border-radius-small);
    box-shadow: var(--box-shadow);
    padding: 10px;
    min-height: 19px;
    max-height: 19px;
    overflow: hidden;
}

table tbody tr:hover .Table_Cell {
    color: var(--color1);
}


.ProgressBar {
    box-shadow: var(--box-shadow-inset);
    background: var(--background2);
    border-radius: var(--border-radius-small);
    width: 200px;
    height: 25px;
    overflow: hidden;
    text-align: left !important;
    padding: 0px !important;
}

.ProgressBar_Progress {
    background-color: var(--color1);
    border-radius: var(--border-radius-small);
    height: 25px;
    width: 0%;
    transition: var(--transition-size);
}




.Loading_Progress {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Font2';
    font-size: var(--font-size-small);
}

.Loading_Icon {
    height: 120px;
    position: absolute;
    z-index: 100;
    left: calc(50% - 60px);
    top: calc(50% - 60px);
    transform: translate(-50%, -50%);
    animation: Loading_Icon_Animation 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
@keyframes Loading_Icon_Animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lds-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index:10;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid var(--color1);
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: var(--background2) transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.select2-dropdown {
    background-color: var(--background2);
    border: none;
    border-radius: 0px;
}
.Box2 .select2-dropdown {
    background-color: var(--background1);
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    background-color: var(--background2);
    padding: 8px 0px;
    border: none;
    border-radius: 0px;
}

.select2-container .select2-selection--single {
    height: 35px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-small);
}
.Box2 .select2-container .select2-selection--single {
    background-color: var(--background1);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    font-family: 'Font2';
    font-size: var(--font-size-small);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 35px;
}

.select2-container--default:hover .select2-selection--single .select2-selection__arrow b {
    border-color: var(--color1) transparent transparent transparent;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--background1);
    border: none;
    border-radius: 0px;
    box-shadow: var(--box-shadow);
}





.Indicator_Ball {
    height: 20px;
    width: 20px;
    background-color: var(--background2);
    border-radius: 10px;
    transition: var(--transition-position);
    box-shadow: var(--box-shadow);
    transform: translate(0px, -52px);
}
.Table_Cell .Indicator_Ball {
    background-color: var(--background1);
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 13px;
    height: 13px;
    transform: scale(0.3) translate(-25px, -25px);
}

    .lds-roller div {
        animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 40px 40px;
    }

        .lds-roller div:after {
            content: " ";
            display: block;
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #fff;
            margin: -4px 0 0 -4px;
        }

        .lds-roller div:nth-child(1) {
            animation-delay: -0.036s;
        }

            .lds-roller div:nth-child(1):after {
                top: 63px;
                left: 63px;
            }

        .lds-roller div:nth-child(2) {
            animation-delay: -0.072s;
        }

            .lds-roller div:nth-child(2):after {
                top: 68px;
                left: 56px;
            }

        .lds-roller div:nth-child(3) {
            animation-delay: -0.108s;
        }

            .lds-roller div:nth-child(3):after {
                top: 71px;
                left: 48px;
            }

        .lds-roller div:nth-child(4) {
            animation-delay: -0.144s;
        }

            .lds-roller div:nth-child(4):after {
                top: 72px;
                left: 40px;
            }

        .lds-roller div:nth-child(5) {
            animation-delay: -0.18s;
        }

            .lds-roller div:nth-child(5):after {
                top: 71px;
                left: 32px;
            }

        .lds-roller div:nth-child(6) {
            animation-delay: -0.216s;
        }

            .lds-roller div:nth-child(6):after {
                top: 68px;
                left: 24px;
            }

        .lds-roller div:nth-child(7) {
            animation-delay: -0.252s;
        }

            .lds-roller div:nth-child(7):after {
                top: 63px;
                left: 17px;
            }

        .lds-roller div:nth-child(8) {
            animation-delay: -0.288s;
        }

            .lds-roller div:nth-child(8):after {
                top: 56px;
                left: 12px;
            }

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.FindText {
    background-color: var(--color1);
    color: var(--font-color-light);
}

.Loading_Circle {
    height: 100px;
    width: 100px;
    position: absolute;
    transform: scale(1);
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    z-index: 100;
}
    .Loading_Circle .inner {
        position: absolute;
        z-index: 6;
        top: 50%;
        left: 50%;
        height: 80px;
        width: 80px;
        margin: -40px 0 0 -40px;
        background: #727677;
        border-radius: 100%;
    }
    .Loading_Circle .number {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        font-size: 18px;
        font-weight: bold;
        color: #FFFFFF;
    }

    .Loading_Circle .bar {
        position: absolute;
        height: 100%;
        width: 100%;
        background: #fff;
        -webkit-border-radius: 100%;
        clip: rect(0px, 100px, 100px, 50px);
    }

        .Loading_Circle .bar .progress {
            position: absolute;
            height: 100%;
            width: 100%;
            -webkit-border-radius: 100%;
            clip: rect(0px, 50px, 100px, 0px);
            background: var(--color1);
        }

    .Loading_Circle .left .progress {
        z-index: 1;
        /*animation: loading_circle_left 4s linear both;*/
    }

@keyframes loading_circle_left {
    100% {
        transform: rotate(180deg);
    }
}

.Loading_Circle .circle .right {
    transform: rotate(180deg);
    z-index: 3;
}

    .Loading_Circle .circle .right .progress {
        /*animation: loading_circle_right 4s linear both;*/
        animation-delay: 4s;
    }

@keyframes loading_circle_right {
    100% {
        transform: rotate(180deg);
    }
}

.Strikethrough,
.Strikethrough td {
    text-decoration: line-through;
    color: var(--font-color-fade);
}


.Stat {
    background-color: var(--background2);
    border-radius: var(--border-radius-small);
    box-shadow: var(--box-shadow);
    margin: 10px;
    display: inline-block;
    min-width: 200px;
    overflow: hidden;
    height: 50px;
}

.Stat_Text {
    float: right;
    font-size: 10pt;
    text-align: right;
    padding: 9px;
}

.Description {
    font-style: italic;
    color: #888888;
    font-size: 10pt;
}

.Tooltip {
    position: absolute;
    background: var(--color2);
    color: var(--background2);
    padding: 10px;
    border-radius: var(--border-radius-small);
    z-index: 1000;
}



.Report_Preview,
.Report_Navigation {
    background-color: var(--background2);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: inline-block;
    padding: 20px;
    margin: 10px;
    cursor: pointer;
    transition: var(--transition-size);
    max-width: 300px;
    width: calc(100% - 60px);
    float: left;
    text-align: center;
    padding-bottom: 10px;
}

    .Report_Preview:hover {
        box-shadow: var(--box-shadow-hover);
    }

.Report_Navigation {
    padding: 10px 20px;
}

.Report_Preview .Report_Preview_Title {
    color: var(--color1);
    text-align: center;
    font-family: 'Font2';
    margin-bottom: 10px;
}

.Report_Preview .Report_Delete {
    float: right;
    margin-top: -33px;
    margin-right: -32px;
    display: none;
}

.Report_Preview:hover .Report_Delete {
    display: block;
}

.Report_Preview_Title {
    font-size: var(--font-size-small);
}

.Report_Navigation .Report_Preview_Title {
    font-size: var(--font-size-small);
    font-family: 'Font2';
    color: var(--font-color-fade);
}

.Report_Preview_Image {
    width: 100%;
    height: 150px;
}

#txt_VideoCreator_Settings_ClipInfo_Text_Tags .Tag,
#txt_VideoCreator_Settings_ClipTransition_Text_Tags .Tag {
    font-size: var(--font-size-small);
    background-color: rgb(113, 136, 49);
    margin: 1px;
}
