:root {
    --background_content: #f7f7f7;
    --background_light_grey: #F0F1F7;
    --background_extra_light_gray: #FCFDFE;
    --text_sidebar: #a4a6b3;
    --text_sidebar_selected: #abc7cb;
    --button_black: #191B16;
    --text_main: #191B16;
    --text_light: #9FA2B4;
    --font_inter: 'Inter', sans-serif;
    --font_outfit: 'Outfit', sans-serif;
}
html, body {
    padding: 0;
    margin: 0;
    height: 100%;
}
body {
    background-color: var(--background_content);
    font-family: arial;
    line-height: 1.6;
}

a {
    color: #6e79d6;
}

.wrapper {
    width: 100%;
    height: 100%;
}
#content {
    width: 100%;
}

.version {
    font-weight: 700;
    font-size: 240px;
    line-height: 0.8;
}
.other-version {
    background: #e9e9e9;
    padding: 3px 5px;
    margin: 0 3px;
}
.applications-wrapper {
    width: calc(100% - 40px);
    margin: 20px;
}
.topbar {
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}
#filter {
    border: none;
    background-color: var(--background_content);
    line-height: 30px;
    padding: 5px 6px;
    margin: 10px 10px;
    width: 100%;
}
#filter:focus {
    background-color: #eee;
    outline: none;
}
.all-applications {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr) ) ;
    grid-auto-rows: 200px;
    padding-bottom: 20px;
}
.application {
    position: relative;
    display: flex;
    background: #fff;
    max-height: 300px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.application .logo img {
    max-width: 60px;
    max-height: 50px;
    margin-bottom: 10px;
}
.application .name h2 {
    font-size: 24px;
}
.application .name a {
    color: #000;
    text-decoration: none;
}
.application .add-wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
}
.variants {
    margin-top: 20px;
}
.variants img {
    width: 30px;
    margin: 0 10px;
}

.url {
    line-height: 60px;
}

.add {
    appearance: none;
    background-color: #dfe1e4;
    border-radius: 72px;
    border-style: none;
    flex-shrink: 0;
    height: 20px;
    margin: 0;
    position: relative;
    width: 30px;
}
/* Modals */
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px;
    }
}
.modal-body {
    padding: 20px 30px;
}

.modal-body h3 {
    font-size: inherit;
    font-weight: 700;
}

.modal-content {
    border-radius: 0;
    -webkit-box-shadow: 0 10px 50px -10px rgb(0 0 0 / 30%);
    box-shadow: 0 10px 50px -10px rgb(0 0 0 / 30%);
    border: none;
    padding: 10px 10px 20px 10px;
    font-size: 18px;
}
.modal-header {
    border: none;
    padding-bottom: 0;
}
.modal-header .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
}
.form-control {
    border-radius: 1px;
}

.btn-primary {
    background: #6e79d6;
}

/* Toggle */
.add::before {
    bottom: -6px;
    content: "";
    left: -6px;
    position: absolute;
    right: -6px;
    top: -6px;
}

.add,
.add::after {
    transition: all 100ms ease-out;
}

.add::after {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 14px;
    left: 3px;
    position: absolute;
    top: 3px;
    width: 14px;
}

.add-wrapper input[type=checkbox] {
    cursor: pointer;
}

.add:hover {
    background-color: #c9cbcd;
    transition-duration: 0s;
}

.add:checked {
    background-color: #6e79d6;
}

.add:checked::after {
    background-color: #fff;
    left: 13px;
}

.add:focus:not(.focus-visible) {
    outline: 0;
}

.add:checked:hover {
    background-color: #535db3;
}


/* Ads */
.ad.light-blue {
    background-color: #009ef7;
}
.ad.dark-blue {
    background-color: #37517e;
}
.ad.light-grey {
    background-color: #f3f5fa;
}
.ad.dark-purple {
    background-color: #535db3;
}
.ad {
    color: #ddd;
    padding: 30px 20px;
}
.ad a {
    color: inherit;
    text-decoration: none;
}
.ad p {
    margin: 0 0 10px 0;
}
