/*
******************************************************************
        -   -   -       T   A   B   L   E   T  -   -   -
******************************************************************
*/
.tablet {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    margin: auto;
    border: 16px black solid;
    border-top-width: 60px;
    border-bottom-width: 60px;
    border-radius: 36px;
}
.tablet:before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 10px;
}
.tablet:after {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    left: 50%;
    bottom: -65px;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 50%;
}
.tablet .content {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: white;
    margin: -1px;
}

/*
******************************************************************
        -   -   -       P   H   O   N   E   -   -   -
******************************************************************
*/
.phone-ios{
    box-sizing: border-box;
    background: none repeat scroll 0 0 #fff;
    color: #FFFFFF;
    line-height: 26px;
    margin: 0 auto;
    overflow-X: hidden;
    position: relative;
    min-height: 400px;
    max-height: 600px;
    height: 99%;
    border: none;
    border-radius: 0.625rem;
    box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1), 
        0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1), 
        0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 
        0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
}
/*      PHONE   HEADER      */
.phone-ios .phone-header{
    color: #2095FE;
    background: rgb(247, 247, 248);
    border-bottom: 1px solid #bbb;
    height: 60px;
    text-align: center;
    font-size: 20px;
    line-height: 58px;
    white-space: nowrap;
}
.phone-ios .phone-header .center{
    font-size: 16px;
    font-weight: bold;
    color: #111111;
}
/*      MESSAGES      */
.phone-ios .messages-wrapper {
    padding-top: 10px;
    position: relative;
    border-top: 0 none;
    height: calc(100% - 122px);
}
.phone-ios .message {
    border-radius: 20px 20px 20px 20px;
    margin: 0 15px 10px;
    padding: 15px 20px;
    position: relative;
}
.phone-ios .message:before {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: -6px;
    height: 20px;
    width: 20px;
    background: #E5E4E9;
    border-bottom-left-radius: 15px;
}
.phone-ios .message:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: -10px;
    width: 10px;
    height: 20px;
    background: white;
    border-bottom-right-radius: 10px;
}
/*      MESSAGES FROM     */
.phone-ios .message.from {
    background-color: #E5E4E9;
    color: #363636;
    margin-right: 80px;
    position: absolute;
    bottom: 10px;
}
.phone-ios .message.from:before {
    border-color: #E5E4E9;
    left: -7px;
    transform: rotateY(180deg);
}
.phone-ios .message.from + .phone-ios .message.from {
    margin-top: -7px;
}
/*      PHONE   FOOTER      */
.phone-ios .phone-footer{
    color: #2095FE;
    background: white;
    height: 50px;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    white-space: nowrap;
    position: relative
}
.phone-ios .phone-footer .messagebar-area{
    width: 100%;
    position: absolute;
    top: 10px;
    left: -20px;
}
.phone-ios .phone-footer .messagebar-area textarea{
    width: 100%;
    flex-shrink: 1;
    border: 1px solid rgb(200, 200, 205);
    border-radius: 17px;
    height: 34px;
    font-size: 17px;
    width: 80%;
    line-height: 25px;
    padding-left: 10px;
}
.phone-ios .phone-footer .link{
    margin-left: 8px;
    align-self: flex-end;
    flex-shrink: 0;
    position: absolute;
    top: 2px;
    right: 7px;
    font-size: 14px;
}
/* OUTPUTS IMAGE */
.outputs-image-container{
    font-size: 12px;
    line-height: 16px;
    color: rgba(0,0,0,.38);
    font-weight: 500;
    text-align: center;
    position: relative;
}
.outputs-image {
    box-shadow: 0 0 0 1px rgba(0,0,0,.12);
    border-radius: 2px;
    display: inline-block;
    position: relative;
    padding: 10%;
    width: 100%;
}
.outputs-image img{
    width: 100%;
    height: auto;
    border-radius: 10%;
}
.outputs-image-overlay {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.outputs-image-overlay svg {
    width: 100%;
    height: 100%;
    stroke-width: 1px;
    stroke: rgba(0,0,0,.12);
}

.outputs-image #demo-img-icon{
    background-color: white;
}

/*
******************************************************************
        -   -   -    S   T   E   P   P   E   R   -   -   -
******************************************************************
*/
.box-send{
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 5px;
    display: block;
}
.box-send:hover{
    border-color: #007bff;
    transition: all .25s ease-in-out;
    text-decoration: none;
}
.box-send i, .box-send small{
    color: #888;
}
.box-send h6{
    color: #007bff;
}

/*
******************************************************************
        -   -   -    S   T   E   P   P   E   R   -   -   -
******************************************************************
*/
.stepper{
    counter-reset: section;
}
.stepper .step{
    margin-bottom: 2.25rem;
    position: relative;
}
.stepper .step .step-content,
.stepper .step .step-label{
    padding-left: 2.2rem;
}
.stepper .step:before{
    position: absolute;
    top: .75rem;
    counter-increment: section;
    content: counter(section);
    height: 1.75rem;
    width: 1.75rem;
    color: #fff;
    background-color: rgba(0,0,0,.3);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    line-height: 1.75rem;
    font-weight: 400;
}
.stepper>.step:not(:last-of-type):after {
    content: '';
    position: absolute;
    top: 3.125rem;
    left: .8438rem;
    width: .0625rem;
    height: 40%;
    height: calc(100% - 38px);
    background-color: rgba(0,0,0,.1);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
/*
******************************************************************

******************************************************************
*/
.card-color-gray{
    background-color: rgba(0,0,0,.07);
}
.bd-example{
    border: solid #f8f9fa;
    margin-right: 0;
    margin-left: 0;
    border-width: .2rem;
}
.text-x2{

}
.text-x3{
    font-size: 36px;
}
.text-x4{
    font-size: 48px;
}
a.card.card-small{
    transition:  0.3s;
}
a.card.card-small:hover {
    box-shadow: 0 0.125rem 9.375rem rgba(90,97,105,.1), 0 0.25rem 0.5rem rgba(90,97,105,.12), 0 0.9375rem 1.375rem rgba(90,97,105,.1), 0 0.4375rem 2.1875rem rgba(165,182,201,.1)
}
/*
******************************************************************

******************************************************************
*/
.questionary-design .border-punteado{
    color: #6B787F;
    font-weight: 500;
    display: block;
    padding: 12px;
    border: 1px dashed #D0D2D3;
    border-radius: 2px;
    -webkit-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
    text-align: center;
    background-color: rgba(255,255,255,0.9);
    border-radius: 2px;
    font-size: 13px;
    text-transform: uppercase;
}
.questionary-design .control-label{
    text-align: right;
}
.questionary-design .input-group{
    width: 100%;
}
.questionary-design .form-control{
    background-color: white;
}
.questionary-design fieldset{
    padding: 0px;
    border: none;
}

.questionary-design #preview-rating i{
    font-size: 30px;
}

.questionary-design .pregunta{
    margin-bottom: 10px;
}
.questionary-design #preguntas{
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #D0D2D3;
}

.questionary-design .table .radio, 
.questionary-design .table .checkbox{
    width: 100%;
    margin-bottom: 0px;
}

.questionary-design .ui-sortable-placeholder{
    height: 540px;
    width: 100%;
    background: #f3f3f3;
    position: relative;
    min-height: 1px;
    padding: 10px;
    margin-top: 10px;
}
.questionary-design .ui-sortable-helper {
    margin-left: 0px;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.42), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.questionary-design .content-father{
    display: block;

}

.questionary-design .first-step{
    background: #f4f5f5;
    border: 1px solid #cccccc;
    border-radius: 2px;
    background-clip: padding-box;
    font-size: 13px;
    font-weight: 400;
    color: #333E48;
    width: 100%;
    padding: 15px;
    position: relative;
}
.questionary-design .first-step .nav{
    background: white;
    border: 1px dashed #D0D2D3;
}
.questionary-design .first-step .tab-content{
    margin-top: 20px;
}
.questionary-design .first-step:hover .btn-group{
    /*display: block;*/
}
.questionary-design .first-step .btn-group{
    /*display: none;*/
    position: absolute;
    right: 16px;
    top: 7px;
    z-index: 9;
}
.questionary-design .first-step .btn-group .btn-move{
    cursor: move;
}
.questionary-design #calif_preguntas .content-father .row{
    margin-top: 10px;
}
.questionary-design .nav-tabs .nav-link.active, 
.questionary-design .nav-tabs .nav-item.show .nav-link{
    border: 1px dashed #D0D2D3;
}
.questionary-design .nav-tabs .nav-link{
    color: #495057;
}

.alert-float-top{
    display: block;
    position: fixed;
    top: 70px;
    right: 10px;
}

.modal{
    margin-left: 211.667px;
}

@media (max-width: 767.98px) {
    .modal{
        margin-left: 0px;
    }
}
