
.voucher-redeem-info .office-365-logo {
    width: 200px;
    border: 1px solid #ddd;
    padding: 10px;
}

.voucher-redeem-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
}

.voucher-redeem-box > h2 {
    margin: 0 0 20px 0;
}

.voucher-code-input {
    text-transform: uppercase;
}

.product-icons {
    overflow: hidden; 
}

.product-icons > img {
    float: left;
}

/* animacja zmiany koloru chmury */

.cloud-provisioning {
    animation: cloudProvisioningChangeColor ease;
    animation-iteration-count: infinite;
    animation-duration: 5s;
    animation-fill-mode: both;
}

@keyframes cloudProvisioningChangeColor {
    0% {
        color: #2c97cf;
    }

    50% {
        color: #6dcdff;
    }

    100% {
        color: #2c97cf;
    }
}


