.outer-button {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

.outer-button .inline {
    display: inline-flex;
    margin-right: 20px;
}

.coolBeans > i.left {
    position: relative;
    top: 4px;
    float: left;
    margin-right: 10px;
}

.coolBeans > i.right {
    position: relative;
    top: 4px;
    float: right;
    margin-left: 10px;
}

.coolBeans {
    border-radius: 3rem;
    background-color: rgba(234, 246, 254, 0.27);
    color: white !important;
    overflow: hidden;
    padding: 1rem 2rem;
    position: relative;
    text-decoration: none;
    will-change: transform;
    z-index: 0;
}

.coolBeans.highlight {
    background-color: white;
    color: #0F2B62 !important;
}

.coolBeans::after {
    background-color: #2d4168;
    border-radius: 3rem;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: 0.2s transform ease-out;
    will-change: transform;
    z-index: -1;
}

.coolBeans:hover::after {
    transform: translate(0, 0);
}

.coolBeans:hover {
    transform: scale(1.05);
    will-change: transform;
}

a.coolBeans {
    color: white !important;
    display: block !important;
}

/* ====================================== Share Button ==================================== */
.share-button {
    background-color: #4a628c;
    padding: 1rem 2rem;
    border-radius: 3rem;
    display: inline-flex;
    overflow: hidden;
    max-width: 147px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    white-space: nowrap;
    cursor: pointer;
    align-items: center;
}

.share-button:hover {
    max-width: 800px;
    background-color: #bac0cb;
    color: #0F2B62;
}

.share-button .text {
    margin-left: 80px;
    display: flex;
}

.share-button .text i {
    margin-left: 30px;
    color: #0F2B62;
}

.share-button .text a {
    position: relative;
}

.share-button .text a:hover i {
    color: white;
    z-index: 4;
}

/* ====================================== Newsletter Button ==================================== */
a.coolBeans.newsletter, .location a.coolBeans {
    background-color: #4a628c;
}

/* ====================================== Dark Button ==================================== */
.coolBeans.dark {
    background-color: #4A628C;
    padding: 1.5rem 3rem;
}

@media only screen and (max-width: 750px) {

}

@media only screen and (min-width: 750px) and (max-width: 1000px) {

}

@media only screen and (min-width: 1001px) and (max-width: 1099px) {

}

@media only screen and (min-width: 1100px) {

}
