.graphcall-overlay {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;

    opacity: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: 1ms opacity ease;
       -moz-transition: 1ms opacity ease;
        -ms-transition: 1ms opacity ease;
         -o-transition: 1ms opacity ease;
            transition: 1ms opacity ease;

    background: rgba(0,0,0,.6);
}
.graphcall-modal {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;

    opacity: 0;
    padding: 0px 0px;

    -webkit-transition: 1ms opacity ease;
       -moz-transition: 1ms opacity ease;
        -ms-transition: 1ms opacity ease;
         -o-transition: 1ms opacity ease;
            transition: 1ms opacity ease;

    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);

    border-radius: 2px;
    background: #fff;
}
.graphcall-modal.graphcall-open.graphcall-anchored {
    top: 20px;

    -webkit-transform: translate(-50%, 0);
       -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
}
.graphcall-modal.graphcall-open {
    opacity: 1;
}
.graphcall-overlay.graphcall-open {
    opacity: 1;
}
.graphcall-modal .graphcall-content {
	height: 100%;
}


.graphcall-modal .graphcall-close {
    font-family: Helvetica,Arial,sans-serif;
    font-size: 24px !important;

    position: absolute;
    top: 52px;
    right: 38px;

    padding: 5px 10px 5px 10px;

    cursor: pointer;

    color: #fff;
    border: 0;
    outline: none;
    background: #ff6171;
    border-radius: 50% !important;
    height: 39px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

@media screen and (max-width:812px) {
  .graphcall-modal .graphcall-close{
    padding: 0 5px 5px 5px;
    height: 25px;
  }
  .graphcall-modal .graphcall-close .graphcall-close-x {
    font-size: 0.7em;
  }
}

.graphcall-modal .graphcall-close:hover{
  border-radius: 25px !important;
}

.graphcall-modal .graphcall-close .graphcall-close-text {
    display: none;
    vertical-align: top;
}
    .graphcall-modal .graphcall-close:hover .graphcall-close-text {
        display: inline;
    }

.graphcall-modal .graphcall-close .graphcall-close-x {
    color: white;
    vertical-align: middle;
}

.graphcall-overlay.fade-and-drop {
    display: block;

    opacity: 0;
}
.graphcall-modal.fade-and-drop {
    top: -300%;

    opacity: 1;

    display: block;
}
.graphcall-modal.fade-and-drop.graphcall-open {
    top: 50%;

    -webkit-transition: 500ms top 500ms ease;
       -moz-transition: 500ms top 500ms ease;
        -ms-transition: 500ms top 500ms ease;
         -o-transition: 500ms top 500ms ease;
            transition: 500ms top 500ms ease;
}
.graphcall-modal.fade-and-drop.graphcall-open.graphcall-anchored {

    -webkit-transition: 500ms top 500ms ease;
       -moz-transition: 500ms top 500ms ease;
        -ms-transition: 500ms top 500ms ease;
         -o-transition: 500ms top 500ms ease;
            transition: 500ms top 500ms ease;
}
.graphcall-overlay.fade-and-drop.graphcall-open {
    top: 0;

    -webkit-transition: 500ms opacity ease;
       -moz-transition: 500ms opacity ease;
        -ms-transition: 500ms opacity ease;
         -o-transition: 500ms opacity ease;
            transition: 500ms opacity ease;

    opacity: 1;
}
.graphcall-modal.fade-and-drop {
    -webkit-transition: 500ms top ease;
       -moz-transition: 500ms top ease;
        -ms-transition: 500ms top ease;
         -o-transition: 500ms top ease;
            transition: 500ms top ease;
}
.graphcall-overlay.fade-and-drop {
    -webkit-transition: 500ms opacity 500ms ease;
       -moz-transition: 500ms opacity 500ms ease;
        -ms-transition: 500ms opacity 500ms ease;
         -o-transition: 500ms opacity 500ms ease;
            transition: 500ms opacity 500ms ease;
}
