* {
	box-sizing: border-box;
}

.clear {
    clear: both;
}

img {
    max-width: 100%;
}

.content-container-chat {
    padding: 1em;
}

:root {
    --main-font: Arial, Helvetica, sans-serif;
    --main-input-color: #6c6c6c;
}

.bloc-video-form {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.bloc-video {
    width: 100%;
    position: relative;
}

.bloc-form-chatall {
    width: 100%;
}

.bloc-form-chat input::-webkit-input-placeholder, .bloc-form-chat textarea::-webkit-input-placeholder {
    font-family: var(--main-font);
    font-style: normal;
    color: var(--main-input-color);
}

.bloc-form-chat input::-moz-placeholder, .bloc-form-chat textarea::-moz-placeholder {
    font-family: var(--main-font);
    font-style: normal;
    color: var(--main-input-color);
}

.bloc-form-chat input:-ms-input-placeholder, .bloc-form-chat textarea:-ms-input-placeholder {
    font-family: var(--main-font);
    font-style: normal;
    color: var(--main-input-color);
}

.bloc-form-chat input::-ms-input-placeholder, .bloc-form-chat textarea::-ms-input-placeholder {
    font-family: var(--main-font);
    font-style: normal;
    color: var(--main-input-color);
}

.bloc-form-chat input,
.bloc-form-chat textarea,
.bloc-form-chat input::placeholder,
.bloc-form-chat textarea::placeholder {
    font-family: var(--main-font);
    font-style: normal;
    color: var(--main-input-color);
}

.advice-video-fullscreen {
    /* font-family: var(--main-font); */
    font-size: 0.9em;
}

/**************/
/** CAPTIONS **/
/**************/

.switch-captions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 5px;
    padding: 0.5em 0 0.5em 0;
}

.switch-captions p {
    color: #5d5d5d;
    font-family: 'Trenda Bold', Arial, Helvetica, sans-serif;
    margin: auto 10px 0 0;
    font-size: 1.1em;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 25px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #999999;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #40e052;
}

input:focus + .slider {
    box-shadow: 0 0 1px #40e052;
}

input:checked + .slider:before {
    transform: translateX(35px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@media screen and (min-width: 993px)
{
    .bloc-video-form {
        display: flex;
        flex-direction: row;
    }

    .bloc-video {
        width: 70%;
        margin-right: 1em;
    }

    .bloc-form-chatall {
        margin-top: 0px;
        width: 100%;
    }

    .switch-captions {
        position: absolute;
        right: 0;
        margin: 0 0 0 auto;
    }

}