.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
    position: fixed;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
}

#formContent .form-container{
    text-align: center;
    margin: 30px;
    widows: 260px;
    margin-left: 120px;
}

.form-sidebar img{
    border-radius: 0;
    position: absolute;
    height: 103%;
    object-fit: contain;
}
.form-sidebar img.apm-sidebar{
    top: -9px;
    left: -9px;
}

.form-sidebar img.amlphac-sidebar{
    top: -5px;
    left: -9px;
}


.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}


@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;

    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.fadeIn.second {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.fadeIn.third {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}


.modal-blur{
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);


    line-height: 1.5;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index:120;
}


@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .modal-blur {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.5);
    }
}

.container-blur {
    height: 100%;
    width: 100%;
}


 .copy-textx {
            -webkit-touch-callout: all; /* iOS Safari */
            -webkit-user-select: all; /* Safari */
            -khtml-user-select: all; /* Konqueror HTML */
            -moz-user-select: all; /* Firefox */
            -ms-user-select: all; /* Internet Explorer/Edge */
            user-select: all; /* Chrome and Opera */
        }
      

        div#pre-loader{
            width: 100%;
            height: 100vh;
            /*z-index: 121;
            position: fixed;*/
        }

        div.loader{
            top: calc(50% - 50px);
            left: calc(50% - 5px);
            color: gray;
            font-weight: bolder;
            font-size: 30px;
        }

        .text-center-align-middle{
          text-align: center;
          vertical-align: middle !important;
        }

        /* Search-box */
        .search-container{
            top: 10px;
            position: fixed;
            width: 100vw;
            z-index: 2;
        }

        #searchResults{
            max-height: 300px;
            overflow: overlay;
        }
        #searchBoxContainer .fa-search{position: absolute; top: 12px; left: 32px;}
        #searchBoxContainer .fa-times{position: absolute; top: 12px; right: 32px; cursor: pointer;}
        #searchBoxContainer .search-box{
            height: 40px;
            font-size: large;
            text-indent: 32px;
        }

        /* end Search-box */

        #floating-button{
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: green;
            position: fixed;
            bottom: 15px;
            right: 15px;
            cursor: pointer;
            box-shadow: 0px 2px 5px #666;
        }

        #floating-button:hover{
            box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
            transition: all 0.3s;
            transform: translateZ(10px);
        }

        .plus{
            color: white;
            position: absolute;
            top: 0;
            display: block;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
            padding: 0;
            margin: 0;
            line-height: 50px;
            /* font-size: 38px; */
            font-family: 'Roboto';
            font-weight: 300;
            animation: plus-out 0.3s;
            transition: all 0.3s;
        }

        #container-floating{
            position: fixed;
            width: 70px;
            height: 70px;
            bottom: 30px;
            right: 30px;
            z-index: 50;
        }

        #container-floating:hover{
            height: 400px;
            width: 90px;
            padding: 30px;
        }

        #container-floating:hover .plus{
            animation: plus-in 0.15s linear;
            animation-fill-mode: forwards;

        }

        .download{
            font-size: 25px;
            color: white;
            font-weight: 300;
            position: absolute;
            top: 0;
            display: block;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 0;
            opacity: 0;
            text-align: center;
            margin: auto;
            line-height: 50px;
            transform: rotateZ(-70deg);
            transition: all 0.3s;
            animation: edit-out 0.3s;
        }

        #container-floating:hover .download{
            animation: edit-in 0.2s;
            animation-delay: 0.1s;
            animation-fill-mode: forwards;
        }

        @keyframes edit-in{
            from {opacity: 0; transform: rotateZ(-70deg);}
            to {opacity: 1; transform: rotateZ(0deg);}
        }

        @keyframes edit-out{
            from {opacity: 1; transform: rotateZ(0deg);}
            to {opacity: 0; transform: rotateZ(-70deg);}
        }

        @keyframes plus-in{
            from {opacity: 1; transform: rotateZ(0deg);}
            to {opacity: 0; transform: rotateZ(180deg);}
        }

        @keyframes plus-out{
            from {opacity: 0; transform: rotateZ(180deg);}
            to {opacity: 1; transform: rotateZ(0deg);}
        }

        .nds{
            width: 40px;
            height: 40px;
            right: 22px;
            border-radius: 50%;
            position: fixed;
            z-index: 300;
            transform:  scale(0);
            cursor: pointer;
        }

        .nds:hover{
            box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
            transition: all 0.3s;
            transform: translateZ(10px);
        }

        .nds .title{
            position: absolute;
            right: 52px;
            white-space: nowrap;
            line-height:40px;
            background-color: white;
            padding: 2px;

        }

        .nd1{
            background: #d3a411;
            bottom: 70px;
            animation-delay: 0.2s;
            animation: bounce-out-nds 0.3s linear;
            animation-fill-mode:  forwards;
        }

        .nd3{
            background: #3c80f6;
            bottom: 120px;
            animation-delay: 0.15s;
            animation: bounce-out-nds 0.15s linear;
            animation-fill-mode:  forwards;
        }

        .nd4{
            background: #ba68c8;
            bottom: 170px;
            animation-delay: 0.1s;
            animation: bounce-out-nds 0.1s linear;
            animation-fill-mode:  forwards;
        }

        .nd5{
            background: #ef5350;
            background-size: 100%;
            bottom: 220px;
            animation-delay: 0.08s;
            animation: bounce-out-nds 0.1s linear;
            animation-fill-mode:  forwards;
        }

        .nd6{
            background: #008000;
            background-size: 100%;
            bottom: 270px;
            animation-delay: 0.08s;
            animation: bounce-out-nds 0.1s linear;
            animation-fill-mode:  forwards;
        }

        .nd7{
            background: #0000ff;
            background-size: 100%;
            bottom: 320px;
            animation-delay: 0.08s;
            animation: bounce-out-nds 0.1s linear;
            animation-fill-mode:  forwards;
        }

        .nd8{
            background: #ea899a;
            background-size: 100%;
            bottom: 370px;
            animation-delay: 0.08s;
            animation: bounce-out-nds 0.1s linear;
            animation-fill-mode:  forwards;
        }

        @keyframes bounce-nds{
            from {opacity: 0;}
            to {opacity: 1; transform: scale(1);}
        }

        @keyframes bounce-out-nds{
            from {opacity: 1; transform: scale(1);}
            to {opacity: 0; transform: scale(0);}
        }

        #container-floating:hover .nds{

            animation: bounce-nds 0.1s linear;
            animation-fill-mode:  forwards;
        }

        #container-floating:hover .nd3{
            animation-delay: 0.08s;
        }
        #container-floating:hover .nd4{
            animation-delay: 0.15s;
        }
        #container-floating:hover .nd5{
            animation-delay: 0.2s;
        }

        .letter{
            /* font-size: 23px; */
            font-family: 'Roboto';
            color: white;
            position: absolute;
            left: 0;
            right: 0;
            margin: 0;
            top: 0;
            bottom: 0;
            text-align: center;
            line-height: 40px;
            text-decoration: inherit; /* no underline */
        }

        .reminder{
            position: absolute;
            left: 0;
            right: 0;
            margin: auto;
            top: 0;
            bottom: 0;
            line-height: 40px;
        }

        .profile{
            border-radius: 50%;
            width: 40px;
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            right: 20px;
        }

/*.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
    position: fixed;
    z-index: 9999;
}

.blured {
    height:500px;
    width:100%;
    text-align:center;
    background-image: -webkit-linear-gradient(bottom left, rgba(43, 40, 50, 0.8) 0%, rgba(83, 86, 99, 0.8) 45%, rgba(69, 77, 91, 0.6) 60%);
    background-image: -moz-linear-gradient(bottom left, rgba(43, 40, 50, 0.8) 0%, rgba(83, 86, 99, 0.8) 45%, rgba(69, 77, 91, 0.6) 60%);
    background-image: -o-linear-gradient(bottom left, rgba(43, 40, 50, 0.8) 0%, rgba(83, 86, 99, 0.8) 45%, rgba(69, 77, 91, 0.6) 60%);
    background-image: linear-gradient(to top right, rgba(43, 40, 50, 0.8) 0%, rgba(83, 86, 99, 0.8) 45%, rgba(69, 77, 91, 0.6) 60%);
    -webkit-filter: blur(100px);
    -moz-filter: blur(100px);
    -o-filter: blur(100px);
    -ms-filter: blur(100px);
    filter: blur(100px);
    position: absolute;
    left:0;
    top: 0;
}

.blured:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1001;
  background-image: -webkit-linear-gradient(289deg, rgba(43,40,50,0.8) 0%, rgba(43,40,50,0.4) 46%, rgba(0,0,0,0.05) 50%);
  background-image: -moz-linear-gradient(289deg, rgba(43,40,50,0.8) 0%, rgba(43,40,50,0.4) 46%, rgba(0,0,0,0.05) 50%);
  background-image: -o-linear-gradient(289deg, rgba(43,40,50,0.8) 0%, rgba(43,40,50,0.4) 46%, rgba(0,0,0,0.05) 50%);
  background-image: linear-gradient(-19deg, rgba(43,40,50,0.8) 0%, rgba(43,40,50,0.4) 46%, rgba(0,0,0,0.05) 50%);
  -webkit-filter: blur(100px);
  -o-filter: blur(100px);
  filter: blur(100px);
}*/
