:root {
    --blue: #45bbff;
    --blue-rgba: 69,187,255,0.2;
    --blue-bubble: 69,187,255,0.6;
    --blue-bubble-30: 69,187,255,0.3;
    --teal: #22b0ae;
    --teal-rgba: 34,176,174,0.2;
    --teal-bubble: 34,176,174,0.6;
    --teal-bubble-30: 34,176,174,0.3;
    --green: #46cd6e;
    --green-rgba: 70,205,110,0.2;
    --green-bubble: 70,205,110,0.6;
    --green-bubble-30: 70,205,110,0.3;
    --yellow: #ffbd13;
    --yellow-rgba: 255,189,19,0.2;
    --yellow-bubble: 255,189,19,0.6;
    --yellow-bubble-30: 255,189,19,0.3;
 }

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    /* overflow-y: hidden; */
}

/* a {
    text-decoration: none;
} */

.column-container {
    display: flex;
    width: 1900px;
    /* height: 931px; */
    /* width: 100%; */
    height: 100%;
    padding: 10px 0px 10px 0;
    box-sizing: border-box;
}

.column {
    position: relative;
    /* padding-bottom: 65px; */
    padding-bottom: 7%;
    border-radius: 10px;
    box-sizing: border-box;
    height: 911px;
}

.col-strategy {
    width: 355px;
    /* width: 19.4% */
}

.column .background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s;
    border-radius: 10px;
    opacity: 100;
    height: 1px;
    z-index: -1;
}

.column .background.active {
    opacity: 100%;
}

.col-strategy .background {
    background: rgba(var(--blue-rgba));
}

.tab.grey {
    background: #e8e8e8 !important;
}

.tab.grey h3 {
    color: #999;
}

.col-strategy .tab {
    background: var(--blue);
}

.bluetext {
    color: var(--blue);
}

.col-cloudcollab {
    width: 648px;
    /* width: 34.1%; */
}

.col-cloudcollab .background {
    background: rgba(var(--teal-rgba));
}

.col-cloudcollab .tab {
    background: var(--teal)
}

.col-cloudsecurity {
    width: 414px;
    /* width: 21.7%; */
}

.col-cloudsecurity .background{
    background: rgba(var(--green-rgba));
}

.col-cloudsecurity .tab {
    background: var(--green);
}

.col-cloudmodernization {
    width: 423px;
    /* width: 22.6%; */
}

.col-cloudmodernization .background {
    background: rgba(var(--yellow-rgba));
}

.col-cloudmodernization .tab {
    background: var(--yellow);
}

.tab {
    text-align: right;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.tab h3 {
    margin: 0;
    padding: 20px 30px;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 20px;
    font-weight: 900;
}

.bucket-container {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    bottom: 64px;
    width: 100%;
    padding: 0 0;
    box-sizing: border-box;
}

.bucket {
    font-size: 13px;
    color: #000;
    padding: 0 10px;
    font-weight: 700;
    text-align: right;
    border-radius: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    float: left;
    margin: 0 0.22em;
}

.bucket-blue {
    background: rgba(var(--blue-bubble));
    /* width: 96px; */
    width: 33.33%;
}

.bucket-teal {
    background: rgba(var(--teal-bubble));
    border-radius: 10px;
}

.bucket-green {
    background: var(--green);
    border-radius: 10px;
}

.bucket-yellow {
    background: var(--yellow);
    border-radius: 10px;
}

.bucket.grey {
    background: #ccc !important;
    color: #999 !important;
}

.bubble {
    width: 80px;
    height: 80px;
    padding: 5px;
    /* border-radius: 50%; */
    text-align: center;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px; */
    box-sizing: border-box;
    position: absolute;
}

.bubble::before {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #000;
    border-radius: 50%;
    z-index: -1;
}

.bubble::before:hover {

}

.capsule {
    padding: 2px 15px;
    font-size: 10px;
    border-radius: 25px;
    text-align: center;
    height: 15px;
    line-height: 15px;
    position: absolute;
    display: flex;
    justify-content: center;
}

.bubble:hover,
.capsule:hover {
    cursor: pointer;
}

/* .bubble-blue, */
.capsule-blue {
    background: rgba(var(--blue-bubble-30));
}

.bubble-blue::before {
    background: rgba(var(--blue-bubble-30));
}

.bubble-blue.active::before,
.capsule-blue.active {
    box-shadow: 0px 0px 0px 4px var(--blue) inset;
}

.col-cloudcollab .bubble::before,
.col-cloudcollab .capsule {
    background: rgba(var(--teal-bubble-30))
}

.col-cloudcollab .bubble.active::before, 
.col-cloudcollab .capsule.active {
    box-shadow: 0px 0px 0px 4px var(--teal) inset;
}

.col-cloudsecurity .bucket {
    background: rgba(var(--green-bubble));
    width: 25%;
}

.col-cloudsecurity .bubble::before,
.col-cloudsecurity .capsule {
    background: rgba(var(--green-bubble-30));
}

.col-cloudsecurity .bubble.active::before,
.col-cloudsecurity .capsule.active {
    box-shadow: 0px 0px 0px 4px var(--green) inset;
}

.col-cloudmodernization .bucket {
    background: rgba(var(--yellow-bubble));
    width: 25%;
}

.col-cloudmodernization .bubble::before,
.col-cloudmodernization .capsule {
    background: rgba(var(--yellow-bubble-30));
}

.col-cloudmodernization .bubble.active::before,
.col-cloudmodernization .capsule.active {
    box-shadow: 0px 0px 0px 4px var(--yellow) inset;
}

.column .bubble,
.column .capsule {
    position: absolute;
}

.columnLabels {
    position: relative;
    left: 0;
    top: 0;
    width: 60px;
    /* padding-bottom: 7%; */
    height: 911px;
}

.leftlabel {
    position: relative;
    /* border-bottom: 1px dashed #ccc; */
    box-sizing: border-box;
}

.leftlabel span {
    display: inline-block;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left top;
    position: absolute;
    top: 50%;
    left: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.row {
    position: relative;
    border-bottom: 1px dashed #ccc;
    box-sizing: border-box;
}

.foundation {
    height: 160px;
    /* height: 21%; */
}

.essentials {
    height: 315px;
}

.mature {
    height: 135px;
}

.optimized {
    height: 165px;
}

.bucket-container {
    transition: all 0.3s;
}

.bucket-container.active {
    display: flex;
}

.tab:hover, .bucket:hover {
    cursor: pointer;
}

.bucket-container .bucket.grey {
    background: #ccc;
    color: #999;
}

.sidemenu {
    position: absolute;
    left: -22px;
    top: 0;
    width: 21px;
    height: 96%;
    display: none;

}

.sidemenu ul {
    font-size: 13px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.sidemenu .leftlabel span {
    font-weight: 400;
    text-transform: initial;
}

.sidemenu li:hover {
    cursor: pointer;
}

.sidemenu li.leftlabel.all {
    bottom: 55px;
    left: 0;
    position: absolute;
    z-index: 99;
}

.column-text {
    position: absolute;
    left: 500px;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    text-align: center;
}

.column-text h2 {
    font-size: 40px;
    font-weight: 300;
}

.showall:hover {
    cursor: pointer;
}

.d_flex {
    display: flex;
}

.bubble, .capsule, .bucket, #left-capsule-container {
    display: none;
}

.columnLabels .leftlabel.all {
    position: absolute;
    bottom: 95px;
}

.columnLabels .leftlabel:hover {
    cursor:pointer;
}

.info {
    position: absolute;
    width: 250px;
    background: #fff;
    /* border: 2px solid #45bbff; */
    z-index: 999;
    padding: 10px;
    text-align: left;
    display: none;
    font-size: 12px;
    line-height: 1.8em;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.info a {
    color: #333;
}

.col-strategy .info {
    background: #daf1ff;
    box-shadow: 0px 0px 0px 2px var(--blue) inset;
}

.col-cloudcollab .info {
    background: #d3efef;
    box-shadow: 0px 0px 0px 2px var(--teal) inset;
}

.col-cloudsecurity .info {
    background: #daf5e2;
    box-shadow: 0px 0px 0px 2px var(--green) inset;
}

.col-cloudmodernization .info {
    background: #fff2d0;
    box-shadow: 0px 0px 0px 2px var(--yellow) inset;
}

.tab.inactive,
.bucket.inactive,
.bubble.inactive::before,
.capsule.inactive {
    background: #e1e1e1 !important;
    color: #aaa;
}

.bubble.inactive {
    color: #aaa;
}

.info.inactive {
    background: #e1e1e1 !important;
    color: #aaa;
    box-shadow: 0px 0px 0px 2px #ccc inset;
}

.info.inactive a {
    color: #aaa;
}
.d-none{
    display : none;
}