:root {
    --primery-color: #151922;
}

body {
    font-family: "Roboto";
    font-size: smaller;
    margin: 0;
    background-color: #F7F7F7 !important;
}

p {
    color: #626262;
    margin: 0;
}

h2 {
    margin: 0;
    padding-bottom: 0.3em;
    color: #000;
    font-weight: normal;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.message {
    color: #5e5e5e;
}

.ui-widget-overlay {
    background-image: none;
}

.container {
    max-width: 93%;
    margin: 0 auto;
    margin-right: 23px;
}

.sidebar {
    width: 80px;
    height: 100vh;
    background-color: var(--primery-color);
    position: fixed;
    left: 0;
    top: 0;
}

.main-title {
    padding: 1rem 0;
    margin-top: 60px;
}

.main-title h1 {
    font-size: 24px;
    font-weight: 500;
}

.box {
    background-color: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.config select {
    border-radius: 10px;
    padding: 5px;
    border-color: #C5C5C5;
    width: 110px;
}

.config {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

@media (max-width:1300px) {
    .config {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .items {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem;
    }

    .grid-box-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width:750px) {
    .sidebar {
        visibility: hidden;
    }
    .head{
        z-index: 99999999999999 !important;
    }
    .sidebar.active {
        visibility: visible;
        z-index: 9999999;
    }

    .list-img {
        display: inline !important;
    }

    .config {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 1rem;
    }

    .container {
        width: 95% !important;
        margin: 0 auto;
    }

    .grid-box-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }

    .box img {
        display: none;
    }

    .items {
        display: grid !important;
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        gap: 1rem;
    }
}

.mt-8 {
    margin-top: 2rem !important;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.main-framework {
    display: flex;
    gap: 1rem;
}

.main-right {
    position: sticky;
    display: flex;
    height: 300px;
    top: 5.7rem;
    flex-direction: column;
    gap: 1rem;
    width: 30%;
}

.menu-item-desc.active {
    visibility: visible;
}

@media (max-width:1650px) {
    .main-framework {
        flex-direction: column;
    }

    .main-right {
        flex-direction: row;
        height: auto;
        width: fit-content;
        background: #F7F7F7 !important;
        z-index: 9999;
    }

    .container {
        width: 90%
    }

    .main-left {
        width: 100% !important;
    }
}

@media (max-width:1100px) {
    .main-framework {
        flex-direction: column;
    }

    .main-right {
        flex-direction: column;
        height: auto;
        width: fit-content;
        background: #F7F7F7 !important;
        z-index: 9999;
        width: 100%;
    }

    .container {
        width: 85%
    }

    .main-left {
        width: 100% !important;
    }

}



.menu-item-desc {
    position: absolute;
    text-wrap: nowrap;
    background: var(--primery-color);
    padding: 1rem;
    border-radius: 10px;
    right: -193px;
    color: white;
    top: 3px;
    visibility: hidden;
    transition: all .500s;
}

.relative {
    position: relative;
}

.main-left {
    width: 70%;
    display: flex;
    padding-bottom: 2rem;
    flex-direction: column;
    gap: 1rem;
}


.box-title {
    display: flex !important;
    align-items: center;
    gap: 1rem;
}

.box-title .title {
    display: flex !important;
    flex-direction: column;
    gap: .4rem;
}

.ui-slider {
    width: 100% !important;
}

.w-full {
    width: 100% !important;
}

.grid-box-4 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 20px;
}

.text-bold {
    font-weight: bold;
}

.w-90 {
    width: 85% !important;
}

.mt-4 {
    margin-top: 1rem;
}

.file pre {
    background: #F4F4F4;
    border-radius: 10px;
    padding: 1rem;
}

.sidebar-item-list {
    padding-top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.sidebar-item {
    background-color: #95969A;
    padding: .6rem;
    border-radius: 10px;

}

.sidebar-item img {
    filter: brightness(0);
}


.text-center {
    text-align: center;
}

/* head */

body>.head {
    padding: 1.5rem 0;
    background: var(--primery-color);
    color: #fff;
    z-index: 999;
    position: relative;
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
}

.site-logo {
    display: block;
    width: auto;
    height: 29px;
    max-width: 120px;
    object-fit: contain;
}

.list-img {
    display: none;
}

body>.head .greater {
    color: #777;
}

body>.head h1 {
    font-weight: normal;
    margin: 0;
    display: inline-block;
}

body>.head a {
    float: right;
    color: #fff;
    padding: 0.7em;
}

/* group */

body>div.group {
    background: #eee linear-gradient(#fff, #eee);
    padding: 1em;
}

body>div.group p.description {
    font-style: italic;
    color: #5e5e5e;
}

.d-none {
    display: none !important;
}

/* elements */

div.sliders>div {
    width: 15em;
}

div.sliders>table {
    padding: 1em;
}

div.sliders>table h3 {
    color: #000;
    font-weight: normal;
}

div.sliders>div h3 {
    color: #000;
    font-weight: normal;
}

div.sliders>div p.message {
    margin-bottom: 0;
}

/* flow */

div.flow>div {
    vertical-align: top;
    display: inline-block;
}

/* storage-required */
body>div.storage-required {
    padding: 1em;
}

body>div.storage-required table {
    font-size: larger;
}

body>div.storage-required table thead tr>td+td {
    font-size: smaller;
}

body>div.storage-required table td {
    padding: 0.5em;
}

body>div.storage-required table tr>td+td {
    text-align: right;
}

body>div.storage-required table tr+tr+tr+tr {
    font-size: larger;
    font-weight: bolder;
}

body>div.storage-required table tr+tr+tr+tr>td+td>span {
    /*    background-color: #57ff00;
    border-radius: 0.5em;
    padding: 0.3em;*/
}

/* storage-configuration */
body>div.storage-configuration {
    padding: 1em;
}

body>div.storage-configuration table {
    font-size: larger;
}

body>div.storage-configuration table tr>* {
    padding: 0.5em;
    text-align: left;
}

/* physical-storage */

body>div.physical-storage div.options>div {
    padding: 1em;
}

body>div.physical-storage table {
    font-size: larger;
}

body>div.physical-storage table thead tr>td+td {
    font-size: smaller;
}

body>div.physical-storage table td {
    padding: 0.5em;
}

body>div.physical-storage table tr>td+td {
    text-align: right;
}

body>div.physical-storage .gb-pricing input[type='text'] {
    width: 3em;
}

/* config-files */

body>div.config-files div.file {
    display: inline-block;
    vertical-align: top;
    padding-right: 2em;
}

body>div.config-files div.file>pre {
    font-size: larger;
}

body>div.config-files div.file>pre .important-conf-value {
    font-weight: bolder;
}

/* retention bar */

.itunes {
    padding-left: 1em;
}

.itunes h3 {
    color: #000;
    font-weight: normal;
}

.itunes .info {
    float: right;
    height: 2.5em;
    margin-top: 17px;
    display: table;
}

.itunes .info p {
    vertical-align: middle;
    display: table-cell;
}

.itunes .bar-container {
    display: inline-block;
}

.itunes .bar-container .bar {
    color: #fff;
    height: 2em;
    display: inline-block;
    width: 30em;
    margin: 0 auto;
    height: 67px;
    border-radius: 7px;
    background: #67707F;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.itunes .bar-container .legend {
    height: 2em;
    display: block;
    padding-top: 1em;
}

.itunes .bar-container .legend>div {
    display: flex !important;
    list-style: none;
    align-items: center;
    display: inline;
    float: left;
    text-align: left;
    margin-right: 12px;
}

.itunes .bar-container .legend>div>span {
    border-radius: 4px;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-right: 5px;
}

.itunes .bar-container .legend>div>span.home {
    background: #a5d686;
}


.itunes .bar-container .legend>div>span.cold {
    background: #acd8f6;
}

.itunes .bar-container .legend>div>span.frozen {
    background: #d5d7d6;
}

.itunes .bar-container .bar .inner {
    display: block;
    width: 110%;
    height: 100%;
    z-index: 999999;
    position: absolute;
    left: -10px;
}

.itunes>.bar-container>.bar>.home {
    background: #a5d686;
    display: inline-block;
    height: 100%;
    width: 20%;
    z-index: -3;
    position: relative;
    float: left;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}

.itunes>.bar-container>.bar>.cold {
    background: #acd8f6;
    display: inline-block;
    height: 100%;
    width: 20%;
    z-index: -3;
    position: relative;
    float: left;
}

.itunes>.bar-container>.bar>.frozen {
    background: #d5d7d6;
    display: inline-block;
    height: 100%;
    width: 60%;
    z-index: -3;
    position: relative;
    float: left;
}

.custom-hero {
  background: linear-gradient(to bottom right, #1e40af, #4338ca, #6d28d9); /* from-blue-800 via-indigo-700 to-purple-700 */
  color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.custom-title {
  font-size: 2rem; /* 4xl */
  font-weight: bold;
  color: #facc15; /* text-yellow-400 */
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .custom-title {
    font-size: 2rem; /* 5xl on md */
  }
}

.custom-description {
  font-size: 1.3rem; /* text-xl */
  line-height: 1.75;
  margin-bottom: 2rem;
  color: #f3f4f6; /* text-gray-100 */
}

@media (min-width: 768px) {
  .custom-description {
    font-size: 1.3rem; /* text-2xl on md */
  }
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.contactus-button {
    --tw-bg-opacity: 1;
    background: linear-gradient(to bottom right, #1e40af, #4338ca, #6d28d9);
    width: 70px;
    position: fixed;
    right: 35px;
    bottom: 35px;
    z-index: 9999;
    height: 70px;
    border-radius: 50px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 8px 2px rgb(0 0 0 / 14%);
    cursor: pointer;
    text-decoration: none;
}

.contactus-button:hover,
.contactus-button:focus-visible {
    color: #fff;
    text-decoration: none;
}

.prk-open-caller.text-white {
    filter: invert(1);
    display: flex;
    flex-direction: column;
}

.prk-open-caller svg {
    max-width: 24px;
    filter: invert(1);
    display: block;
    margin: 1px auto 1px;
}

.contactus-button span {
    font-size: 10px;
    font-weight: 600;
    color: black;
}

.opacity-0 {
    opacity: 0;
}

.flex-col {
    flex-direction: column;
}

.flex {
    display: flex;
}
