body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
.container {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    background-image: url("https://d3lhe4jckqhfsm.cloudfront.net/assets/images/page-bg.jpg");
    background-size: cover;

}

#content {
    min-height: 400px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    visibility: hidden;
}
.client-logo {
    width: 82px;
    height: 92px;
    display: flex;
    justify-content: center;
}

.client-logo img {
    height: 100%;
}
.description {
    width: 283px;
    color: #fff;
    text-align: center;
}

.product-card {
    width: 283px;
    border-radius: 16px;
    background-color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
#p-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.product-logo {
    width: 120px;
    height: 38px;
}

.product-logo img {
    width: 100%;
}

.product-image {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.all-products {
    width: 100%;
    height: auto;
}

.product-image img {
    width: 100%;
}

.product-title {
    width: 100%;
    height: 25px;
    text-align: center;
}

.product-title img {
    height: 100%;
}

.product-action {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-action button {
    width: 180px;
    height: 42px;
    border-radius: 32px;
    color: #ffff;
    border: none;
    box-shadow: none;
    cursor: pointer;
    margin: 5px 0;
    text-transform: uppercase;
}

#plugin-start-cta, #plugin-schedule-cta {
    background-color: #265398;
}

#external-cta {
    background-color: #50555c;
}

.mb-2 {
    margin-bottom: 20px;
}

@media (max-height: 650px) {
    .container{
        align-items: self-start;
    }
}

#loader-div {
    display: block;
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
}

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #707a82;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}