*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    font-family: 'Open Sans', sans-serif;
}


.modal-header {
      border: none;
      padding: 0 !important; }
      .modal-header button {
        height: 3rem;
        width: 3rem;
        border-radius: 50%;
        border: 2px solid #DADAD9;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0px !important;
        margin-top: 15px !important; }
        .modal-header button span {
          color: #DADAD9;
          font-size: 3rem; }
    
    .modal__time {
      border-top: 2px solid #0088D2;
      border-bottom: 2px solid #0088D2;
      padding: .3rem 0; }
    
    .modal-content {
      padding-bottom: 2rem;
      padding-right: 2rem; }
      .modal-content .speaker__img {
        width: 15rem;
        min-height: 15rem; }
      .modal-content .speaker__company {
        font-size: 1.4rem; }
      .modal-content .description {
        font-size: 1.4rem; }
      .modal-content .speaker__position {
        font-size: 1.1rem; }
    
    .modal__img {
      max-width: 10rem;
      width: 100%;
      margin-top: 2rem;
      margin-bottom: 2rem; }
    



#modal__form .modal-content {
	background-image: linear-gradient(120deg, #0087D1, #28A9A9);
	padding-bottom: 4rem;
	padding-left: 4rem;
	padding-right: 4rem;
}

#modal__form .modal__logo {
	max-width: 15rem;
}

#modal__form .modal__heading {
	font-weight: 900;
	color: #fff;
	font-size: 3rem;
	text-align: right;
}

.shine-form .form-control::placeholder {
	text-transform: uppercase;
	font-weight: 300;
	color: #000;
	font-size: 1.3rem;
	font-family: 'Open Sans', sans-serif;
}


.shine-form .form-control {
	background-color: #CCEBEE;
	border-radius: 0;
	margin-bottom: 1.5rem;
	padding: 2.5rem 1.2rem;
	font-size: 1.6rem;
	outline: none;
	border: none;
}




.container__input .checkmark::after {
	left: 9px;
	top: 5px;
	width: 8px;
	height: 10px;
	border: solid #0C91C5;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

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

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}


.shine-form button {
	font-size: 2rem;
	font-weight: 600;
	background: #fff;
	color: #0088D2;
	padding: .6rem 4rem;
	border: none;
	outline: none;
	transition: all .3s;
}

.shine-form button:hover {
	background-color: #0088D2;
	color: #fff;
}

/* The container */
.container__input {
      display: block;
      position: relative;
      padding-left: 35px;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 1.4rem;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      color: #fff;
      margin-bottom: 1.5rem;
    }
    
    /* Hide the browser's default checkbox */
    .container__input input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }
    
    /* Create a custom checkbox */
    .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 25px;
      width: 25px;
      background-color: #eee;
    }
    
    /* On mouse-over, add a grey background color */
    .container__input:hover input ~ .checkmark {
      background-color: #ccc;
    }
    
    /* When the checkbox is checked, add a blue background */
    .container__input input:checked ~ .checkmark {
      background-color: #fff;
    }
    
    /* Create the checkmark/indicator (hidden when not checked) */
    .checkmark:after {
      content: "";
      position: absolute;
      display: none;
    }
    
    /* Show the checkmark when checked */
    .container__input input:checked ~ .checkmark:after {
      display: block;
    }
    
    /* Style the checkmark/indicator */
    .container__input .checkmark:after {
      left: 9px;
      top: 5px;
      width: 8px;
      height: 10px;
      border: solid #0C91C5;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }