/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    scroll-behavior: smooth;
    --primary-color: #161C2D;
    --secondary-color: #142C53;
    --secondary-90: #2bb3fb;
    --secondary-80: #869ab8;
    --grey-100: #7b7b7b;
    --white: #fff;
    --danger-text: #DC562E;
    --warning-text: #F5C045;
    --border: #E7ECF3;
    --text-grey: #a1a0a0;
    --text-light-grey: #c4bebe;
    --dark: #2A2A2A;
    --placeholder: #6B5494;
    --light: #F1F4F8;
    --cloud-blue: #234F94;
    --cloud-sky-blue: #2BB3FB;
    --cloud-sage-green: #A0CAA2;
    --cloud-peach: #F4846C;
    --cloud-red: #ED174B;
    --cloud-rust: #F9542F;
    --cloud-purple: #7C2266;
    --cloud-ice-blue: #E6F6FF;
    --cloud-ice-grey: #EBF3FF;
    --cloud-ice-green: #F2FFF3;
    --cloud-ice-peach: #FFEAEF;
    --cloud-ice-pink: #F1D7E8;
    --cloud-ice-apple-green: #E6FFE2;
    --cloud-ice-smoke: #E7ECF3;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html {
    font-family: "Source Sans 3", serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);

}

body {
    font-family: "Source Sans 3", serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    margin: 0px;
    padding: 0px;
    line-height: 1.5;
    background: var(--light);
}

.btn:focus,
button:focus,
input:focus,
select,
textarea,
.form-control,
.btn.focus {
    outline: 0px;
    box-shadow: none;
}

.btn:disabled {
    cursor: not-allowed !important;
}

a {
    color: var(--dark);
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

::-moz-selection {
    background: var(--secondary-color) !important;
    color: #ffffff !important;
}

::selection {
    background: var(--secondary-color) !important;
    color: #ffffff !important;
}

::placeholder {
    color: #ccc;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-secondary {
    background: var(--secondary-color) !important;
}

.bg-sky {
    background: #e8f7ff !important;
}

.text-grey-100 {
    color: var(--grey-100) !important;
}

.text-secondary-90 {
    color: var(--secondary-90) !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-cloud-blue {
    background: var(--cloud-blue) !important;
}

.bg-cloud-sky-blue {
    background: var(--cloud-sky-blue) !important;
}

.bg-cloud-sage-green {
    background: var(--cloud-sage-green) !important;
}

.bg-cloud-peach {
    background: var(--cloud-peach) !important;
}

.bg-cloud-red {
    background: var(--cloud-red) !important;
}

.bg-cloud-rust {
    background: var(--cloud-rust) !important;
}

.bg-cloud-purple {
    background: var(--cloud-purple) !important;
}

.bg-cloud-ice-blue {
    background: var(--cloud-ice-blue) !important;
}

.bg-cloud-ice-grey {
    background: var(--cloud-ice-grey) !important;
}

.bg-cloud-ice-green {
    background: var(--cloud-ice-green) !important;
}

.bg-cloud-ice-peach {
    background: var(--cloud-ice-peach) !important;
}

.bg-cloud-ice-pink {
    background: var(--cloud-ice-pink) !important;
}

.bg-cloud-ice-smoke {
    background: var(--cloud-ice-smoke) !important;
}

.bg-cloud-ice-apple-green {
    background: var(--cloud-ice-apple-green) !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.sidebar-nav-logo {
    line-height: 1;
    height: 65px;
}

.cloud-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 200px;
    z-index: 1030;
    background: var(--light) !important;
}

.text-base {
    font-size: 16px !important;
}

@media (min-width: 1200px) {
    .logo {
        width: 280px;
    }
}

.logo img {
    max-height: 26px;
    margin-right: 6px;
}


.text-lg {
    font-size: 18px !important;
}

.text-20 {
    line-height: 1.5;
    font-size: 20px !important;
}

.text-24 {
    font-size: 24px !important;
}

.text-sm {
    font-size: 12px !important;
}

.text-xs {
    font-size: 10px !important;
}

a.text-primary,
.text-primary {
    color: #BE9A87 !important;
}

.text-md {
    font-size: 14px !important;
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #012970;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
    /* box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1); */
    background-color: #fff;
    padding-left: 1rem;
}

.toggle-sidebar-btn {
    font-size: 32px;
    padding-left: 10px;
    cursor: pointer;
    color: var(--secondary-80);
}

.text-padding{
    padding-right: 20px;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}

.header-nav>ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 22px;
    color: #9E8E8A;
    margin-right: 25px;
    position: relative;
}


.header-nav .nav-profile img {
    max-height: 36px;
}

.header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600;
}

.header-nav .badge-number {
    position: absolute;
    inset: -2px -5px auto auto;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
    background-color: red;
}

.header-nav .notifications {
    inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    transition: 0.3s;
}


/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 200px;
    z-index: 996;
    transition: all 0.3s;
    padding: 0px;
    overflow: hidden;
    /* box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1); */
    background: #F5F4F3;
    border-right: 1px solid #E2DDDC !important;
}

.sidebar-nav {
    height: calc(100vh - 65px);
    overflow-y: auto;
}

@media (max-width: 991px) {
    .sidebar {
        left: -200px;
    }
}

.cloud-collection-modal::-webkit-scrollbar,
.my-start-cloud-right-panels-inner::-webkit-scrollbar,
.modal-body-scrollable::-webkit-scrollbar,
.sidebar-nav::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
}

.cloud-collection-modal::-webkit-scrollbar-thumb,
.my-start-cloud-right-panels-inner::-webkit-scrollbar-thumb,
.modal-body-scrollable::-webkit-scrollbar-thumb {
    background-color: var(--border);
}

.my-start-cloud-right-panels-inner::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
}

.my-start-cloud-right-panels-inner::-webkit-scrollbar-thumb {
    background-color: var(--bs-gray-100) !important;
}

.modal-body-scrollable {
    max-height: calc(100vh - 235px);
    overflow-y: auto;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}

@media (min-width: 992px) {

    #main {
        margin-left: 200px;
    }
}

@media (max-width: 991px) {
    .toggle-sidebar {
        left: 0;
    }

    .toggle-sidebar #main {
        margin-left: 0px !important;
    }

    .cloud-header {
        height: 65px !important;
        background: white !important;
        left: 0px !important;
        width: 100% !important;
    }

    .toggle-sidebar .sidebar {
        left: 0 !important;
    }
}

@media (min-width: 992px) {

    .toggle-sidebar #main {
        margin-left: 55px;
    }

    .toggle-sidebar .cloud-header {
        left: 55px;
    }

    .toggle-sidebar .sidebar span {
        display: none;
    }

    .toggle-sidebar .sidebar {
        width: 55px;
    }
}


.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    transition: 0.3s;
    padding: 0.9rem 1rem;
}


.sidebar-nav .nav-link i {
    font-size: 16px;
    color: #869ab8;
    margin-right: 10px;

}

.sidebar-nav .nav-link.active {
    background: var(--secondary-color) !important;
    color: var(--secondary-90) !important;
}

.sidebar-nav .nav-link.active i {
    color: var(--secondary-90) !important;
}

.sidebar-nav .setting {
    width: 83%;
}

.heading-md {
    font-size: 30px !important;
}

.heading-lg {
    font-size: 3rem !important;
}

.heading-xl {
    font-size: 60px !important;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 65px;
    padding: 0px 20px;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    #main {
        padding: 20px;
    }
}

.card-custom {
    box-shadow: rgba(126, 113, 94, .2) 0px 10px 30px 0px !important;
    background: white;
    border-radius: 6px;
}

.colorpicker-component .color-picker-preview {
    width: 70px;
    height: 26px;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    left: 7px;
    pointer-events: none;
    border: 1px solid rgba(0, 40, 100, .12);
}

.colorpicker-component input {
    padding-left: 85px;
}


.cloud-logo-upload-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.cloud-logo-upload-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 10px;
}




.btn-edit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
    width: 64px;
    border: 1px solid #bcc9de;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    color: #234f94;
}

.picture-container {
    position: relative;
    cursor: pointer;
    text-align: center;
    height: 100%;
    width: auto;
    margin-left: 10px;
    max-width: 120px;
}

.custom-input {
    display: block;
    width: 100%;
    height: 40px;
    padding: .375rem .75rem;
    font-size: .9375rem;
    line-height: 1.6;
    color: #506690;
    background-color: #fff;
    border: 1px solid rgba(0, 40, 100, .12);
    border-radius: 3px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.custom-textarea {
    display: block;
    width: 100%;
    height: auto;
    padding: .375rem .75rem;
    font-size: .9375rem;
    line-height: 1.6;
    color: #506690;
    background-color: #fff;
    border: 1px solid rgba(0, 40, 100, .12);
    border-radius: 3px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.custom-textarea:focus,
.custom-input:focus,
.custom-textarea:active,
.custom-input:active {
    border-color: var(--primary-color) !important;
}

.card {
    border: 1px solid rgba(0, 40, 100, .12);
}

/*SELECT 2*/
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--primary-color) !important;
    color: white;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid rgba(0, 40, 100, .12) !important;
}

.select2-selection__arrow,
.select2-container .select2-selection--single {
    height: 40px !important;
}

select.theme-selector+.select2-container .select2-selection--single .select2-selection__rendered:after {
    width: 18px;
    height: 18px;
    background-color: #000;
    border: 1px solid #404547;
    border-radius: 50%;
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

select.theme-selector[data-current-value="1"]+.select2-container .select2-selection--single .select2-selection__rendered:after {
    background-color: #fff !important;
}

.cloud-color-input label {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.border-top-light {
    border-top: 1px solid var(--border) !important;
}

.border-bottom-light {
    border-bottom: 1px solid var(--border) !important;
}

.cloud-color-input label span {
    height: 24px;
    width: 24px;
    display: inline-block;
    transition: transform .2s ease-in-out;
}

.cloud-color-input label input:checked+span {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    position: relative;
}

.cloud-color-input label input:checked+span:after {
    content: "";
    border: 1px solid #2bb3fb;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-image: url('../img/tick-white.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 10px;
}

.btn-primary {
    background-color: #234f94 !important;
    border-color: #234f94 !important;
}

.cloud-collection-drag {
    left: 8px;
    top: 0;
    cursor: move;
}

.cloud-collection-drag i,
.cloud-collection-dropdown i {
    color: #bcc9de;
    font-size: 10px;
}

.cloud-collection-dropdown {
    top: 0 !important;
    right: 8px;
}

.arrow-none:after,
.arrow-none:before {
    display: none;
}

.dropdown-menu {
    border: 1px solid #e7ecf3 !important;
}

.cloud-application-icon {
    border: 1px solid #e7ecf3;
    width: 35px !important;
    font-size: 14px;
    height: 30px;
    padding: 5px;
    margin-right: 4px;
    margin-left: 4px;
}

.card-collections-body {
    height: calc(100vh - 210px) !important;
    overflow-y: auto;
    overflow-x: hidden !important;
}

.card-collections-annoucement {
    height: auto !important;
    max-height: 465px !important; /* Or whatever fits below 525px total */
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.card-icons-body {
    height: calc(100vh - 130px) !important;
    overflow-y: auto;
}

.card-icons-body::-webkit-scrollbar,
.card-collections-body::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
}

.card-icons-body::-webkit-scrollbar-track,
.card-collections-body::-webkit-scrollbar-track {
    background: var(--light);
}

.card-collections-body::-webkit-scrollbar-thumb {
    background: rgb(222 225 239);
}

.cloud-list .cloud-collection-item {
    padding: 30px 10px 10px;
    border: 1px solid #e7ecf3;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
}

.cloud-list .cloud-collection-item-parent {
    padding-left: 5px;
    padding-right: 5px;
    width: 102px;
}


/*.cloud-collection-item-img {*/
/*    height: 60px;*/
/*    width: 60px;*/
/*    border: 1px solid #e7ecf3;*/
/*    border-radius: 10px;*/
/*}*/

.cloud-collection-item-img {
    height: 60px;
    width: 60px;
    border: 1px solid #e7ecf3;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    /* Add some padding */
    box-sizing: border-box;
    /* Ensure padding doesn't overflow */
}

.card-stack-item-icon::after {
    background-image: url('/assets/img/group-shape.svg');
    background-color: #142c53;
    background-repeat: no-repeat;
    background-position: center 5px;
    content: "";
    height: 18px;
    width: 18px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 5px;
  }

.cloud-collection-item-img img,
.cloud-collection-item-img svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.font-awesome-padding{
    max-width: 80% !important;
    max-height: 80% !important;
}

.modal-content-outer {
    z-index: 999;
}

.modal-backdrop {
    opacity: 0.45 !important;
}

.modal-md {
    max-width: 600px;
}

.color-picker input[type=color] {
    width: 40px !important;
    top: 1px;
    right: 1px;
    height: 38px;
}

.cloud-app-upload-box .cloud-app-upload-placeholder {
    width: 80px !important;
}

.cloud-app-upload-box {
    width: 100px !important;
    height: 100px !important;
}

.cloud-app-upload-box img {
    width: 80% !important;
    height: 80% !important;
}

.cloud-app-upload-btn {
    height: 25px;
    width: 25px;
    background: var(--secondary-90) !important;
    bottom: 7px;
    right: 7px;
    z-index: 9;
}

.cloud-app-upload-btn-sm {
    height: 20px;
    width: 20px;
    background: var(--secondary-90) !important;
    bottom: -4px;
    right: -5px;
    z-index: 9;
}

.btn {
    padding: 0.375rem 1.6rem;
}

.cloud-app-icon {
    padding: 2px;
    transition: .3s all;
}

.cloud-app-icon-collection {
    padding: 10px;
    transition: .3s all;
}


  @media (max-width: 1200px) {
    .cloud-app-icon-collection {
      padding: 12px;
    }
  }

  @media (max-width: 768px) {
    .cloud-app-icon-collection {
      padding: 8    px;
    }
  }

  @media (max-width: 576px) {
    .cloud-app-icon-collection {
      padding: 2px;
    }
  }


.cloud-list{
    padding-left: 22px !important;

}

.cloud-modal{
    padding-top: 20px !important;
    padding-left: 7px !important;
    padding-right: 7px !important;
    padding-bottom: 7px !important;
    transition: .3s all;
}

.cloud-app-icon:hover .cloud-collection-item-img {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
}

.icon-26 {
    width: 26px;
    height: 26px;
}

.add_account_sso_check_mark {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: #2bb3fb;
}

.cloud-sso-checkbox:has(input:checked) {
    background-color: #e8f7ff !important;
}

.cloud-sso-checkbox input:checked+.add_account_sso_check_mark {
    display: flex !important;
}

.cloud-sso-checkbox {
    border: 1px solid #e7ecf3;
    border-radius: 10px;
    height: 193px;
}

.cloud-sso-checkbox .cloud-sso-checkbox-box {
    border: 1px solid #e7ecf3;
    border-radius: 10px;
    width: 100px;
    height: 100px;
}

.col-6{
    flex: 6;
    display: flex;
    flex-direction: column;
    gap: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
    box-sizing: border-box;
}
.col-6-style{

    border-radius: 10px;
    align-items: center;
    background-color: white;
}

.col-3-style{
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.col-row{
    flex: 1;
      display: flex;
      justify-content: space-around;
      align-items: center;

}
.left-container-fluid{
    position: absolute;
    top: 60px; /* navbar height */
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}


@media (max-width: 767px) {

    .card-icons-body,
    .card-collections-body {
        height: auto !important;
    }
}

.cloud-app-icon-noshadow:hover .cloud-collection-item-img {
    box-shadow: none !important;
}

.cloud-app-icon-btn {
    bottom: 6px;
    font-size: 9px !important;
    width: 20px;
    height: 20px;
    right: 4px;
    background: var(--secondary-90) !important;
}

.tooltip {
    font-size: 12px !important;
}

.cloud-auth-logo {
    width: 80px !important;
}

.cloud-auth-logo-lg {
    width: 120px !important;
}

.cloud-auth-container {
    max-width: 540px;
}

.my-start-cloud-logo-user {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    padding: 5px;
    box-sizing: border-box;
}

.my-start-cloud-logo-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    /* Smooth image edges */
}

.my-start-cloud-logo-circle {
    width: 50px;
    height: 50px;
    padding: 4px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    box-sizing: border-box;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-start-cloud-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}


.my-start-cloud-logo {
    min-width: 46px;
    width: 46px;
    height: auto;
    max-height: 30px
}

.cloud-dark-header {
    height: 65px;
    color: white !important;
}

.cloud-light-header {
    color: var(--dark) !important;
}

.my-start-cloud-search {
    height: 35px;
}

.my-start-cloud-search input {
    height: 35px;
    font-size: 13px;
    border: 1px solid transparent;
    width: 100%;
    padding: 0.5rem 90px 0.5rem 1rem !important;

}

.my-start-cloud-search-icon {
    width: 65px;
    height: 35px;

}

.my-start-cloud-search img {
    width: 18px !important;
}

.my-start-cloud-right-panels {
    height: 100% !important;
    overflow: hidden;
    border-bottom-right-radius: var(--bs-border-radius-lg)!important;
    border-bottom-left-radius: var(--bs-border-radius-lg)!important

}

.my-start-cloud-right {
    height: calc(100vh - 80px);
    display: flex;
    /*gap:1rem 0 !important;*/
    flex-direction: column;
}

.my-style-cloud-right-1{
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.my-start-cloud-right-panels-11{
    border-radius: 10px;
    background: #ffffff;

    transition: flex 0.3s ease;
    position: relative;
}

.my-start-cloud-right-panels-inner {
    overflow: auto;

}

/*.my-start-cloud-right .my-start-cloud-right-panels:nth-child(1) .my-start-cloud-right-panels-inner{*/
/*    height: calc(100vh / 2 - 140px) !important;*/
/*    min-height: 160px;*/
/* } */

/*.my-start-cloud-right .my-start-cloud-right-panels:nth-child(2) .my-start-cloud-right-panels-inner{*/
/*    height: calc(100vh / 2 - 20px) !important;*/
/* }*/

.my-start-cloud-right-panels-inner textarea {
    height: 100% !important;
}

@media (max-width: 767px) {
    .cloud-auth-container {
        min-height: auto !important;
    }

    .heading-lg {
        font-size: 35px !important;
    }

    .heading-xl {
        font-size: 38px !important;
    }

}

@media (max-width: 567px) {

    .cloud-dark-header {
        height: auto !important;
    }

    /* .my-start-cloud-right-panels-inner {
        height: auto !important;
    } */
}

.cloud-organization-logo {
    width: 100px !important;
    height: 100px !important;
}

.cloud-organization-logo button {
    right: -5px;
    bottom: 15px !important;
    cursor: pointer;
}

.cloud-organization-logo img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
}

.cloud-home-navbar .navbar-brand.cloud-home-logo {
    width: 100px;
    min-height: 80px;
}

.btn-success:hover {
    background-color: #7ac74f !important;
    color: white !important;
}

.btn-success {
    border-color:  #7ac74f !important;
    color:  #7ac74f !important;

}

.btn-save:hover,
.btn-save {
    background-color: #7ac74f !important;
    color: white !important;
}

.btn-cancel:hover {
    background-color: #FF7733 !important;
    color: white !important;
}

.btn-cancel {
    border-color: #FF7733 !important;
    color: #FF7733 !important;
}

.btn-back:hover {
    background-color: #2AB3FBFF !important;
    color: white !important;
}
.btn-back {
    border-color: #2AB3FBFF !important;
    color: #2AB3FBFF !important;
}
.btn-preview:hover {
    background-color: #224F94FF !important;
    color: white !important;
}

.btn-preview {
    border-color: #224F94FF !important;
    color: #224F94FF !important;
}

.btn-add:hover,
.btn-add {
    background-color: #224f94ff !important;
    color: white !important;
}

.btn-login{
    background-color: #7ac74f !important;
    color: white !important;

}

.btn-google{
    background-color: #4385f4 !important;
    color: white !important;
}

.btn-microsoft{
    background-color: #7555A4 !important;
    color: white !important;
}

.cloud-home-navbar .nav-link {
    font-size: 16px !important;
    padding: 0.65rem 1.4rem !important;
}

.cloud-home-hero {
    padding: 90px 0 50px 0px;
    background: #e8f7ff !important;
}

.text-blue {
    color: #1c4587 !important;
}

@media (min-width: 1400px) {
    .cloud-home .container {
        max-width: 1140px;
    }
}

.cloud-home-hero .cloud-home-video {
    width: 100%;
    border-radius: 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, .2);
    max-width: 100%;
    height: 350px;
    font-size: 50px;
    background-image: url('../img/video.png');
    background-size: cover;
}

.btn-warning {
    background-color: #f73;
    color: #fff !important;
}

.cloud-list .list-group-item {
    height: 100px;
    padding: 30px;
    color: #b6b6b6;
}

.cloud-list .list-group-item:hover {
    color: #000 !important;
}

.cloud-list .list-group-item.active {
    color: #000 !important;
    background: white !important;
    box-shadow: 0 4px 16px 0 hsla(0, 0%, 48.2%, .25) !important;
}

.cloud-features-item i {
    font-size: 50px;
}

.text-success {
    color: #7ac74f !important;
}

.text-warning {
    color: #f73 !important;
}

.text-pink {
    color: #db2763 !important;
}

.cloud-footer-logo {
    width: 126px;
}

.cloud-wizard-bubble {
    width: 20px;
    height: 20px;
    margin: 0 auto .5em;
    border: 2px solid #e7ecf3;
    display: block;
}

.cloud-wizard-item {
    width: 33.333% !important;
}

.cloud-wizard-item:not(:last-child):before {
    display: block;
    position: absolute;
    top: 9px;
    width: 90%;
    height: 2px;
    content: "";
    background-color: #e7ecf3;
    z-index: 1;
    left: 55%;
}

.cloud-wizard-item.cloud-wizard-done .cloud-wizard-bubble {
    border-color: #2bb3fb !important;
}

.cloud-wizard-item.cloud-wizard-done .cloud-wizard-text {
    display: block !important;
}

.cloud-collection-icon {
    right: -4px !important;
    top: -4px !important;
}

.cloud-app-icon-check:hover {
    background: #e8f7ff !important;
}

.cloud-app-icon-check input:checked~i {
    display: block !important;
}

.custom-group label {
    width: 75px;
}

.custom-group input {
    width: auto !important;
    flex-grow: 1 !important;
}

.card-announcement-fixed {
    height: 525px !important;
}

.my-start-cloud-right-collapsed {
    height: auto !important;
}

.modal-content-outer {
    position: relative;
    z-index: 1055;
    /* or higher than Bootstrap modal */
}

.modal-content-outer .fa-times {
    z-index: 9999;
    position: relative;
    pointer-events: auto;
}

/*custom 50000 times */

.py-3 .col-6-style {
    background: none !important;
    flex: none !important;
}

.py-3 .col-6-style .d-flex {
    justify-content: start !important;
}
.py-3 .col-6-style .d-flex .cloud-app-icon-collection {
    cursor: pointer;
}


.py-3 .col-6-style .d-flex .cloud-app-icon-collection .cloud-collection-item-img
{
    transition: box-shadow ease-in-out 200ms,
    transform ease-in-out 200ms;
}
/*.py-3 .col-6-style .d-flex .cloud-app-icon-collection .cloud-collection-item-img[style] {*/
/*    background: none !important;*/
/*}*/

.py-3 .col-6-style .d-flex .cloud-app-icon-collection:hover .cloud-collection-item-img

{
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2) !important;
}
.py-3 .col-6-style .py-2 {
    justify-content: flex-start !important;
}
.modal-backdrop {
    opacity: 0.85 !important;
}

.my-start-cloud-logo-user {
    width: 40px !important;
    height: 40px !important;
}

#header .border-end, #header .border-start
{
    border: none !important;
}

.my-start-cloud-wrapper .border-end .fw-semibold .fw-normal.ms-1 {
    color: #fff !important;
}


.px-3 .my-start-cloud-logo-circle {
    width: 40px !important;
    height: 40px !important;
}


.modal-body.modal-body-scrollable.p-4 {
    padding: 20px !important;
}




.me-lg-3.me-md-2.cloud-modal {
    width: 20%;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    cursor: pointer;
}

.me-lg-3.me-md-2.cloud-modal .cloud-collection-item-img {
    margin: 0 !important;
    height: 70px !important;
    width: 70px !important;

}

.me-lg-3.me-md-2.cloud-modal .cloud-collection-item-img img, .me-lg-3.me-md-2.cloud-modal .cloud-collection-item-img svg
{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 10px;
}

/*.modal-body.modal-body-scrollable.p-4 .cloud-collection-item-img[Style] {*/
/*    background: none !important;*/
/*}*/

.me-lg-3.me-md-2.cloud-modal .cloud-collection-item-img
{

    transition: box-shadow ease-in-out 200ms,
    transform ease-in-out 200ms;
}


.me-lg-3.me-md-2.cloud-modal:hover .cloud-collection-item-img


{

    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2) !important;
}

.py-3 .col-6-style .d-flex .cloud-app-icon-collection .cloud-collection-item-img img {
    padding: 7px;
}





@media (min-width: 992px)
{
    .align-items-stretch .col-6.col-sm-7.col-md-7.col-lg-6
    {
        height: calc(100vh - 90px) !important;
        overflow-y: auto;
    }

}


@media (min-width: 1451px)
{

    .py-3 .custom-element .col-6-style .d-flex .cloud-app-icon-collection
    {
        width: 14.28571%;
        margin: 0 !important;

    }

    .custom-element .cloud-collection-item-img.bg-cloud-ice-smoke {
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .custom-element .cloud-collection-item-img
    {
        height: 80px;
        width: 80px;
    }

    .py-3 .custom-element .col-6-style .d-flex .cloud-app-icon-collection .cloud-collection-item-img img {
        padding: 12px;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .p-3 .custom-element .text-xs.text-center.mt-1 {
        font-size: 12px !important;
        padding-top: 6px;
    }


}

@media (max-width: 575px)

{
    .py-3 .col-6-style .d-flex .cloud-app-icon-collection
    {
        margin: 0 8px;
        margin-bottom: 10px;
    }

}



@media (max-width: 1440px) and (min-width: 990px)

{

    .py-3 .col-6-style .d-flex .cloud-app-icon-collection {
        margin: 0 !important;
        width: 14.28571%;

    }

    .cloud-app-icon-collection {
        padding: 2px;

    }
    .py-3 .col-6-style .d-flex .cloud-app-icon-collection .cloud-collection-item-img
    {
        margin-right: auto !important;
        margin-left: auto !important;

    }

}

@media (max-width: 1050px) and (min-width: 768px)
{
    .cloud-app-icon-collection.me-lg-3.me-md-2
    {
        margin-right: 0 !important;
    }

}


@media (max-width: 1060px) and (min-width: 990px)
{

    .cloud-collection-item-img {
        width: 50px;
        height: 50px;
    }
}


@media (max-width: 600px)
{

    #header .d-flex.flex-sm-nowrap.align-items-center.w-100.h-100 {
        display: block !important;
        position: relative;
        padding-top: 20px;
    }

    #header .border-end.px-md-4.px-3.d-flex.align-items-center.h-100 {
        float: left;
    }

    #header .d-flex.d-sm-none.px-md-4.px-3.w-100.h-100.align-items-center.justify-content-end {
        position: absolute;
        top: -33px;
    }

    #header .d-flex.align-items-center.p-3.w-100 {
        margin-top: 10px;
        margin-bottom: 10px;
    }

}

@media  (min-width: 1500px) and (max-width: 1590px) and (min-height: 695px) and (max-height: 870px) {

    .custom-element .d-flex.align-items-center.flex-wrap.p-3 {
        padding: 0px 4px !important;
    }
    .col-6.col-sm-7.col-md-7.col-lg-6.custom-element {
        justify-content: start !important;
    }

    .align-items-stretch .col-6.col-sm-7.col-md-7.col-lg-6 {
        height: calc(100vh - 95px) !important;
    }

    .my-start-cloud-right {
        height: calc(100vh - 95px);
    }

    .my-start-cloud-right-panels-11.my-start-cloud-right-panels {
        margin-bottom: 0;
    }

    /*.image-wrapper[data-v-34ab7cdd] {*/
    /*    aspect-ratio: 9.3 / 9 !important;*/
    /*}*/

    .image-wrapper[data-v-34ab7cdd] {
        aspect-ratio: auto !important;
    }

.image-panel-image[data-v-34ab7cdd] {
    object-fit: contain !important;
}

    .my-start-cloud-right .mb-3 {
        margin-bottom: 10px !important;
    }


    .custom-element .cloud-collection-item-img {
        height: 70px;
        width: 70px;
    }

    .py-3 .custom-element .col-6-style .d-flex .cloud-app-icon-collection .cloud-collection-item-img img {
        padding: 10px;
    }
    .cloud-app-icon-collection {
        padding: 9px;
    }


}



.cloud-app-icon {
    width: 20%;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-right: 16px !important; */
    padding-top: 0 !important;
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
}

.cloud-collection-item-img {
    height: 70px;
    width: 70px;
    margin: 0 !important;
}

.cloud-collection-item-img img, .cloud-collection-item-img svg {
    border-radius: 10px;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 10px;
}

.cloud-app-icon.me-lg-2.me-md-1 {
    margin-right: 16px !important;
}
