@import url('https://fonts.googleapis.com/css?family=Montserrat');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #eee;
  color: #111;
}

.draggable-elements {
  /* display: flex; */
  justify-content:space-around;
  margin: 2rem;
}
.draggable {
    display: list-item;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0rem 0.5rem;
    cursor: move;
    transition: opacity 0.2s;
    font-weight: bold;
    font-size: 20px;
    line-height: 3rem;
}
.draggable:hover {
  opacity: 0.5;
}
.droppable {
  height: 6.5rem;
  width: 6.5rem;
  margin: 1rem 1rem;
  display: inline;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  background-color: #fff;
  border: 3px dashed #111;
  transition: border-width 0.2s, transform 0.2s, background-color 0.4s;
}
.droppable span {
  font-size: 1.25rem;
  pointer-events: none; /* The element is never the target of pointer events */
}

/* Drag and Drop Related Styling */

.droppable.droppable-hover {
  /* background-color: #bee3f0; */
  border-width: 5px;
  transform: scale(1.1);
}
.droppable.dropped {
  border-style: solid;
  color: #fff;
}
.droppable.dropped span {
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.droppable.dropped i {
  pointer-events: none;
}
.draggable.dragged {
  user-select: none;
  opacity: 0.1;
  cursor: default;
}
.draggable.dragged:hover {
  opacity: 0.1;
}

@media (max-width: 600px) {
  html { font-size: 14px; }
  .draggable-elements { margin: 1.5rem; }
}
.customNavigation{
    position:relative;
    cursor:pointer;
}
.customNavigation .subMenu{
        position:absolute;
        top:100%;
        opacity:0;
        visibility:hidden;
        background-color:#fff;
        z-index:99;
            min-width: 230px;
                    border-radius:10px;

    }
    .customNavigation .subMenu a{
            color: #333;
    font-size: 15px;
    padding: 10px 12px;
    display: block;
    font-weight:500;
    }
    .customNavigation .subMenu{
        padding:15px 0;
    }
    .customNavigation:hover .subMenu{
        opacity:1;
        visibility:visible;
    }
    .menu-item-has-children{
        position:relative;
    }
    .menu-item-has-children > a{
        padding:10px 24px;
    }
    .menu-item-has-children .megaMenu{
        min-width:600px;
        position:absolute;
        left:100%;
        top:0;
        opacity:0;
        visibility:hidden;
        background-color:#fff;
        border-radius:10px;
        display:flex;
    }
    ul.megaMenu > li{
        flex: 0 0 33.33%;
        max-width:33.33%;
    }
    ul.megaSubMenu li a{
        font-size:14px !important;
        font-weight:400 !important;
    }
    .menuTitle{
        font-weight:500;
    }
    .menu-item-has-children:hover> .megaMenu{
        opacity:1;
        visibility:visible;
    }
    .menuTitle{
        font-size:15px !important;
        font-weight:500;
        display:block;
            padding-bottom: 3px !important;
    }
    section#instructors h4 {
    margin-top: 40px;
}
/**/
.signup-form .form-group input[type='checkbox'] {
    height: 16px;
}
.form-check{
    display:flex !important;
}
.signin-link a{
    font-size:14px !important;
    border-radius:10px !important;
    margin-bottom:10px;
}
.tiny-footer li{
    line-height:2;
}
.dropdown-menu.show{
    border-radius:10px !important;
    overflow:hidden;
}