.youtube-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.youtube-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* The container */

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}


/* Hide the browser's default checkbox */

.container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */


/* On mouse-over, add a grey background color */

.container:hover input[type="checkbox"]~.checkmark {
    background-color: #ccc;
}


/* When the checkbox is checked, add a blue background */

.container input[type="checkbox"]:checked~.checkmark {
    background-color: #006678 !important;
}


/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.container input[type="checkbox"]:checked~.checkmark:after {
    /*display: block;*/
    display: none;
}


/* Style the checkmark/indicator */

.container .checkmark:after {
    left: 10px;
    top: 7px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mr-1 {
    margin-right: .5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.no-float {
    float: initial!important;
}


/**
 * Component Collapsible
 */

.collapsible>.collapsible__item>.collapsible__header {
    display: flex;
    justify-content: space-between;
    background-color: #f5f5f5;
    color: #303641;
    cursor: pointer;
    padding: 1rem;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.666vw;
}

.collapsible>.collapsible__item.collapsible__active {
    border: 1px solid #f5f5f5;
}

.collapsible>.collapsible__item.collapsible__active>.collapsible__header {
    background-color: #303641;
    color: white;
}

.collapsible>.collapsible__item.collapsible__active>.collapsible__header>.collapsible__actions>.collapsible__link,
.collapsible>.collapsible__item.collapsible__active>.collapsible__header>.collapsible__actions>.collapsible__action {
    background-color: white;
    color: #303641;
}

.collapsible>.collapsible__item.collapsible__active>.collapsible__content {
    overflow: initial;
    max-height: initial;
    padding: 1rem;
}

.collapsible>.collapsible__item.collapsible__active>.collapsible__active+.collapsible__content {
    padding: 1rem;
    border: solid 1px #f5f5f5;
    display: block;
}

.collapsible>.collapsible__item>.collapsible__content {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}