﻿#calendly-loading {
    height: 50px;
}
/* custom div button */
#btn-show-calendly {
    display: none;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    color: white;
    background-color: var(--coc-color-blue);
    /*color: black;*/
    /*background-color: rgb(250, 177, 52);*/
    font-weight: bold;
    border: none;
    border-radius: 1rem;
    box-shadow: var(--coc-shadow-element-size) var(--coc-color-blue);
}
    #btn-show-calendly:hover {
        text-decoration: underline;
    }
    #btn-show-calendly:focus {
        text-decoration:underline;
        outline: 2px solid black;
    }

/* the height here is necessary for the iframe to display at a reasonable size */
.calendly-inline-widget {
    height: 600px;
    display: none;
}
.calendly-badge-widget {
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* bootstrap size breakpoints */
/* xs */
@media only screen and (max-width: 575px) {
    #btn-show-calendly {
        width: auto;
    }
}
/* sm */
@media only screen and (min-width: 576px) and (max-width: 767px) {
}

/* md */
@media only screen and (min-width: 768px) and (max-width: 991px) {
}

/* lg */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

/* xl */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
}

/* styles at max widths */
/* xs */
@media only screen and (max-width: 575px) {
}

/* sm */
@media only screen and (max-width: 767px) {
}

/* md */
@media only screen and (max-width: 991px) {
}

/* lg */
@media only screen and (max-width: 1199px) {
}

/* xl */
@media only screen and (max-width: 1399px) {
}
