.column {
    border: 1px solid #0d4962;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: width 0.3s ease;
    width: 20%;
    background-color: #cae4ef;
    flex-direction: column;
}

.column.hide {
    display: none;
}

.column.column0 {
    background-color: #aacddc;
    border-left: 0;
}

.column.column4 {
    border-right: 0;
}

.column .verticalTitle {
    display: none;
    color: #0d4962;
    font-family: "Metropolis Bold";
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.2px;
    transform: rotate(-90deg);
    height: 100%;
    text-wrap: nowrap;
    position: relative;
    height: 0;
    top: 5%;
}

.column.collapsed .verticalTitle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.column .container {
    height: 100%;
    padding: 25px 24px 15px;
}

.column.collapsed .container {
    display: none;
}

.column .container.limitHeight {
    height: 70%;
    padding-bottom: 20px;
}

.column .bottomContainer {
    height: 30%;
    width: 100%;
    display: none;
}

.column .bottomContainer.show {
    display: flex;
}

.column .toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background-image: url(http://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/navigation/arrowleft.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 24px;
    width: 13px;
}

.column.collapsed .toggle {
    background-image: url(http://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/navigation/arrowright.png);
    right: 75%;
}
