.gradient {
    background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
}

/* Modal Window */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(255, 255, 255, 0.5);
    /* Black w/ opacity */
}

.modal .modal-content {
    background-color: transparent;
    margin: 30% auto;
    /* 30% from the top and centered */
    padding: 20px;
    width: 90%;
    /* Could be more or less, depending on screen size */
}

.modal .close {
    color: #000;
    float: right;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.modal .close:hover,
.modal .close:focus {
    color: #555;
    text-decoration: none;
    cursor: pointer;
}

.icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    overflow: hidden;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    padding-left: .5rem;
}

.colour-block {
    background: #823A9C;
    width: 60%;
    padding: 7% 20% 10% 20%;
    color: #fff;
}

/*------------------*/
/*  SKEW CLOCKWISE  */
/*------------------*/
.skew-cc {
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0px;
    background: linear-gradient(to right bottom, #823A9C 49%, #fff 50%), linear-gradient(-50deg, #ffffff 16px, #000 0);
}


/*-------------------------*/
/* SKEW COUNTER CLOCKWISE  */
/*-------------------------*/
.skew-c {
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0px;
    background: linear-gradient(to left bottom, #fff 49%, #823A9C 50%);
}