.watch-modal {
    .modal-dialog {
        @media screen and (min-width:576px) {
            max-width: 710px;
        }

        .modal-content {
            background-color: transparent;
            border: none;

            .modal-header {
                border-bottom: none;
                padding: 0;

                .btn-close {
                    background: url(../../../assets/img/enterprise/close-white.svg);
                    opacity: 1;
                    position: relative;
                    top: -10px;
                    background-repeat: no-repeat;
                    &:focus {
                        box-shadow: none;
                    }
                }
            }

            .modal-body {
                padding: 0;

                iframe {
                    width: 100%;
                    height: 476px;

                    @media screen and (max-width:768px) {
                        height: 200px;
                    }
                }
            }
        }
    }
}