html,
body {
    min-height: 100vh;
}

body {
    font-family: "Proxima-Nova", sans-serif !important;
}

.rizanova-login {
    min-height: 100vh;
}

.side-bg img {
    width: 100%;
    height: 100vh;
    object-fit: contain;
}

.login {
    width: 415px;
    padding: 24px;
    border: 1px solid #E4E4E4;
    border-radius: 12px;
}

.login h3 {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #202020;

}

.eye {
    position: absolute;
    right: 8px;
    top: 6px;
}

.login label {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3;
}

.btn {
    font-size: 16px;
    line-height: 24px;
    padding: 10px;
}

.btn-warning {
    background: #F1A239;
    border-radius: 8px;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.rotating {
    -webkit-animation: rotate 1s linear 0s infinite forwards normal;
    animation: rotate 1s linear 0s infinite forwards normal;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center
}

.login input {
    background: #F9F9F9;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
}

header.main {
    padding: 16px 12px;
    border-bottom: 1px solid #E4E4E4;
}

header.main .logo {
    width: 256px;
}

header.main .search {
    border: 1px solid #F1A239;
    min-width: 300px;
    border-radius: 8px;
}

header.main .search input {
    width: 100%;
    border: 0;
    outline: 0 !important;
    box-shadow: none !important;
}

header.main .profile {
    text-decoration: none;
}

header.main .profile .fullname {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #111111;
    margin-bottom: 0;
    transition: .1s ease;
}

header.main .profile .role {
    margin-bottom: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #A3A3A3;
}

header.main .profile .avatar {
    margin-right: 8px;
}

header.main .profile .avatar img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

header.main .profile:hover .fullname {
    color: #F1A239;
}

.sidebar {
    width: 256px;
    border-right: 1px solid #E4E4E4;
}

.content {
    padding: 24px;
    background-color: #F5F5F5;
    flex-grow: 1;
    height: calc(100vh - 71px);
    overflow-y: scroll;
}

.sidebar ul {
    list-style-type: none;
    padding: 16px 12px;
    margin: 0;
}

.sidebar ul ul {
    padding: 0;
}

.sidebar ul ul a {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    padding: 6px 6px 6px 50px !important;
    display: inline-block;
}

.sidebar ul ul a.active {
    color: #F1A239;
}

.sidebar ul li {
    margin-bottom: 3px;
}

.sidebar ul li a span {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    margin-left: 15px;
    transition: .2s ease;
}

.sidebar ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 12px;
    text-decoration: none;
    border-radius: 12px;
    transition: .2s ease;
}

.sidebar ul li a path {
    transition: .2s ease;
}

.sidebar ul li a.open span {
    color: #F1A239;
}

.sidebar ul li a.open div path {
    fill: #F1A239 !important;
}

.sidebar ul>li>a.active,
.sidebar ul>li>a:hover {
    background-color: #FEF6EC;
}

.sidebar ul li a.active path,
.sidebar ul li:hover a path {
    fill: #F1A239 !important;
}

.sidebar ul li a.active span,
.sidebar ul li:hover a span {
    color: #F1A239;
}

div.header {
    display: flex;
    justify-content: space-between;
}


div.header .title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #111111;
    margin: 0;
    display: flex;
    align-items: center;
}

div.header .title a {
    color: inherit;

    text-decoration: none;
}

.variants {
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    display: flex;
}

.variants a {
    text-decoration: none;
    margin: 1px;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #111111;
    padding: 8px 16px;
    display: inline-block;
    transition: all ease .3s;
}

.variants a:hover,
.variants a.active {
    background: #F1A239;
    color: white !important;
}

div.header .actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.month-range-picker-container {
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 7px 16px;
}

input.month-range-picker {
    border: 0;
    outline: 0;
    margin-left: 5px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #111111;
    width: 160px;
    cursor: pointer;
}

.btn-default {
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 16px;
    color: #111111;
}

.btn {
    transition: ease .2s all;
}

.btn-default:hover {
    background: #F1A239;
    color: white;
}

.btn path {
    transition: ease all .2s;
}

.btn-default:hover path {
    fill: #fff;
}

.btn-default:active {
    background: #F1A239 !important;
    color: white !important;
}

.card {
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    border: 0;
}

.card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.card-title span {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #111111;
}

.card p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3;
    margin-bottom: 24px;
}

.progress-container span {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #A3A3A3;
    margin-left: 8px;
}

.progress-container .progress {
    height: 4px;
}

.box {
    background: #FFFFFF;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
}

.box .title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: #111111;
}

.box .title .link {
    color: #111111;
    text-decoration: none;
    transition: all ease .2s;
}

.box .title .link:hover {
    color: #F1A239;
}

.table-header p {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3;
    margin: 0;
}

.table-header {
    border-bottom: 1px solid #E4E4E4;
    padding: 8px 12px;
}

.home-table {
    width: 100%;
}

.home-table tr {
    padding: 2px 6px;
    display: flex;
}

.home-table tr:nth-child(odd) {
    background: #F9F9F9;
}

.home-table tr td {
    padding: 6px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.home-table tr img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.home-table tr img.circle {
    border-radius: 50%;
}

.home-table .order {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #111111;
    margin-right: 8px;
}

.home-table .name {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #111111;
    width: 100%;
}

.home-table .object {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    color: #A3A3A3;
}

.home-table .end {
    flex-grow: 1;
    vertical-align: middle;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    text-align: right;
    color: #111111;
    justify-content: flex-end;
}

.header .limit {
    display: flex;
    align-items: center;
}

.header .limit span {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #111111;
    margin-right: 12px;
}

.header .limit select {
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;

    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #111111;
    padding: 8px;
}

.header .search {
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    padding: 3px
}

.header .search input {
    border: 0;
    outline: 0;
    box-shadow: none !important;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3;
}

.header .search input::placeholder {
    color: #A3A3A3;
}

.btn-primary {
    background-color: #F1A239;
    border: 1px solid #F1A239;
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 16px;
}

.btn-primary:hover {
    background-color: #DB9234;
}

.main-table {
    padding: 24px 16px;
    background-color: #fff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-top: 16px;
}

.main-table.no-shadow {
    box-shadow: none;
}

.main-table table {
    width: 100%;
}

.main-table table thead {
    border-bottom: 1px solid #DCDCDC;
    padding: 10px;
}

.main-table table thead th {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3;
    padding: 3px 11px 11px 14px;
}

.main-table table thead th a {
    color: inherit;
    text-decoration: none;
}

.table-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 0.25em;
    border: 2px solid #E4E4E4;
    box-shadow: none !important;
    outline: none !important;
}

.main-table table tbody tr td {
    padding: 14px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #202020;
}

.main-table table tbody tr td.green {
    color: #4FD28C;
}


.main-table table tbody tr td.red {
    color: #EF225D;
}

.main-table table tbody tr td a {
    color: inherit;
    text-decoration: none;
    transition: all ease .2s;
}

.main-table table tbody tr td a:hover {
    color: #DB9234;
}

.main-table table tbody tr:hover {
    background: #F9F9F9;
}


.main-table table tbody tr:nth-child(odd) {
    background: #F9F9F9;
}

.main-table table tbody tr:hover {
    background: #f0f0f0;
}

.cursor-pointer {
    cursor: pointer !important;
}

ul.pagination {
    display: flex;
    align-items: center;
    user-select: none;
}

ul.pagination .page-number {
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #111111;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    text-decoration: none;
    margin: 0 2px;
}

ul.pagination .previous .page-number,
ul.pagination .next .page-number {
    background: transparent;
    border: 0;
    width: 24px;
    height: 24px;
    padding: 0;
}

ul.pagination .selected .page-number {
    background: #FEF6EB;
    border: 1px solid #F1A239;
    border-radius: 8px;
    color: #F1A239;
}

.popup {
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1111;
    display: none;
    justify-content: center;
}

.popup.show {
    display: flex;
}

.popup.right {
    justify-content: flex-end;
}

.popup .popup-content {
    background-color: #fff;
    min-height: 100%;
    padding: 40px 24px;
    overflow-y: scroll;
}

.popup.right .popup-content {
    animation: slideRight .2s ease 1 forwards;
}

@keyframes slideRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0%);
    }
}

.popup .popup-content .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup .popup-content .popup-header .title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #111111;
}

.popup .section {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    margin-top: 24px;
    margin-bottom: 8px;
}

.popup .section hr {
    margin: 0;
    flex-grow: 1;
    border-top: 1px solid #E4E4E4;
    opacity: 1;
}

.popup .section div {
    margin-right: 8px;
}

.popup .form-group {
    margin-bottom: 16px;
}

.popup .form-group label {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3;
    margin-bottom: 4px;
}

.popup .form-group input {
    background: #F9F9F9;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    width: 100%;
    height: 44px;
    padding: 10px 16px;
}

.popup .form-group textarea {
    background: #F9F9F9;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    width: 100%;
    padding: 10px 16px;
}

.popup .form-group select {
    background: #F9F9F9;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #111111;
    width: 100%;
    height: 44px;
    padding: 10px 16px;
}

.popup .form-group input.required {
    border: 1px solid #EF225D;
}

.partner .info img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 8px;
}

.partner .info {
    padding-bottom: 18px;
}

.partner .info .fullname h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    margin: 0;
}

.partner .info .fullname p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3;
    margin: 0;
}

.partner .balance {
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    padding: 16px 0;
}

.partner .balance .title {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #A3A3A3;
    margin-bottom: 4px;
}

.partner .balance .available {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #4FD28C;
}

.partner .balance .title.margin {
    margin-top: 16px;
}

.partner .balance .withdraw {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #EF225D;
}

.partner .contact {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
    padding: 16px 0;
}

.partner .contact .margin {
    margin-top: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E4E4E4;
}

.partner .box .actions {
    padding-top: 16px;
}

.partner .actions .edit {
    background: rgba(241, 162, 57, 0.1);
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #F1A239;
    padding: 8px;
    text-decoration: none;
    text-align: center;
    transition: .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner .actions .edit path {
    transition: .2s ease;
}

.partner .actions .edit:hover {
    background: #F1A239;
    color: white;
}


.partner .actions .edit:hover path {
    fill: white !important;
}

.partner .button {
    background: #F1A239;
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    display: block;
    padding: 8px;
    text-align: center;
    text-decoration: none;
    transition: .2s ease;
}

.partner .button:hover {
    background: #DB9234;
}

.fs-20 {
    font-size: 20px !important;
    line-height: 24px;
}

.home-table.no-diff tr:nth-child(odd) {
    background-color: transparent;
}

.partner .objects .margin {
    margin-top: 16px;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 16px;
}

.partner .earn-chart .nav {
    display: flex;
}

.partner .earn-chart .nav a {
    flex-grow: 1;
    background: #F9F9F9;
    text-decoration: none;
    padding: 20px;
    transition: background-color .2s ease;
    border-top: 3px solid #F9F9F9;
}

.partner .earn-chart .nav a.active,
.partner .earn-chart .nav a:hover {
    background-color: #fff;
    border-top: 3px solid #F1A239;
}

.partner .earn-chart .nav a:not(.active):hover {
    border-top: 3px solid #fff;
}

.partner .earn-chart .nav a .text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #111111;
    margin-bottom: 12px;
}

.partner .earn-chart .nav a .earn {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #111111;
}

.partner .earn-chart .nav a .difference {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-top: 14px;
}

.partner .earn-chart .nav a .difference.green {
    color: #4FD28C;
}

.partner .earn-chart .nav a .difference.green path {
    fill: #4FD28C;
}

.partner .earn-chart .nav a .difference.red {
    color: #EF225D;
}

.partner .earn-chart .nav a .difference path {
    fill: #EF225D;
}

.partner .chart {
    margin-top: 24px;
}

.partner .poster {
    margin-bottom: 16px;
}

.partner .poster img {
    width: 100%;
    border-radius: 16px;
}

.partner .detail {
    border-top: 1px solid #E4E4E4;
    padding-top: 16px;
}

.partner .detail .label {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
}

.partner .detail .value {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #111111;
}

div.places {
    display: flex;
    align-items: center;
    flex-direction: row;
}

div.places img {
    margin-right: 8px;
}

div.places img:last-child {
    margin-right: 0;
}

.modal-multi-select .select__input-container,
.modal-multi-select div[class$="Input"] {
    padding: 0 !important;
    margin: 0 !important;
}

.modal-multi-select .select__value-container,
.modal-multi-select div[class$="ValueContainer"] {
    padding: 0 16px !important;
}

.modal-multi-select .select__control,
.modal-multi-select div[class$="control"] {
    background: #F9F9F9;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
}

.modal-multi-select .select__placeholder,
.modal-multi-select div[class$="placeholder"] {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #111111;
}

.object-modal .popup-content {
    max-width: 650px;
}

.fill-24 {
    width: 24px;
    height: 24px;
}

fieldset.object-item {
    border-radius: 12px;
    background: #F9F9F9;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
    padding: 16px;
    margin-bottom: 24px;
}


.popup fieldset.object-item .form-group input {
    background-color: #fff;
}

fieldset.object-item .modal-multi-select .select__control,
fieldset.object-item .modal-multi-select div[class$="control"] {
    background-color: #fff;
}

.users {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.users .user {
    border-radius: 12px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-right: 24px;
    width: 230px;
}

.users .user .avatar {
    display: flex;
    justify-content: center;
}

.users .user .avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.users .user .info {
    margin-top: 16px;
}

.users .user .info .fullname {
    color: #111;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 4px;
    text-align: center;
}

.users .user .info .role {
    color: #A3A3A3;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
    text-align: center;
}

.users .user .actions {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.40);
    align-items: center;
    justify-content: center;
    display: none;
}

.users .user:hover .actions {
    display: flex;
}

.users .user .actions a {
    border-radius: 8px;
    border: 1px solid #C4C4C4;
    background: #FFF;
    margin-right: 12px;
    padding: 6px;
    transition: all .2s ease;
}

.users .user .actions a:hover {
    background: #E4E4E4;
}

.users .user .actions a:last-child {
    margin-right: 0;
}

.form-check-input:checked {
    background-color: #F1A239;
    border-color: #F1A239;
}

.platform-badge {
    padding: 3px 8px;
    margin-right: 5px;
    border-radius: 8px;
    background-color: #F5F5F5;
    font-size: 14px;
}

.platform-badge:last-child {
    margin-right: 0;
}

.link {
    color: inherit;
    text-decoration: none;
    transition: all ease .2s;
}

.link:hover {
    color: #F1A239;
}

.link:hover h3 {
    color: #F1A239 !important;
}

.reports {}

.reports a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 5px solid var(--neutral-gray-3, #E4E4E4);
    padding: 10px 25px;
    margin-bottom: 24px;
    background-color: #141414;
    transition: all ease .2s;
    position: relative;
}

.reports a:hover {
    background-color: #F1A239;
}

.btn.disabled, .btn:disabled {
    background-color: #F1A239;
}

.reports a.active {
    border: 5px solid #EF225D;
}

.reports a img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

.reports a .loader {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .75);
}

.reports a .loader i {
    color: white;
}

.for-all {
    color: #F1A239;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
}

.report-popup.popup .popup-content {
    max-width: 585px;
}

.report-popup.popup {
    justify-content: flex-end;
}

.object-platforms {
    border-radius: 8px;
    border: 1px solid #f5f5f5;
    padding: 16px;
    margin-bottom: 16px;
}

.object-platforms a.add {
    color: #F1A239;
    font-size: 14px;
    text-decoration: none;
    transition: all ease .2s;
}

.object-platforms a.add:hover {
    color: #D88212;
}

.home-table .name {
    transition: all ease .2s;
}

.home-table .name:hover {
    color: #DB9234;
}

select.default {
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #111111;
    padding: 8px;
}