.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.fade.in {
    opacity: 1;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    width: 600px;
    margin: 30px auto;
    position: relative;
}
.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
}

.modal.in .modal-dialog {
    transform: translate(0, 0);
}


.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
}
.modal-content {
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
}


.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header:before {
    display: table;
    content: " ";
    box-sizing: border-box;
}

.modal-header button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    font-family: Geometria;
    font-weight: 700;
    font-size: 21px;
    line-height: 1;
    color: #000;
    margin-top: -2px;
    float: right;
    opacity: .2;
}

.modal-header .modal-title {
    font-weight: 700;
    margin: 0;
    line-height: 1.42857143;
}

.modal-header:after {
    clear: both;
    display: table;
    content: " ";
}

.modal-body {
    position: relative;
    padding: 40px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    background-image: linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%);
    background-repeat: repeat-x;
}


.form-group {
    margin-bottom: 15px;
}
.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px;
}

.form-horizontal .form-group:before {
    display: table;
    content: " ";
    box-sizing: border-box;
}

.modal-body label, .modal-header .modal-title {
    /*font-weight: 700;*/
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
}


.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-group .form-control {
    border-radius: 20px;
    height: 40px;
    max-width: 640px;
    border: 1px solid #b6b6b6;
    outline: 0;
    font-size: 16px;
    color: #000;
}

.form-horizontal .form-group:after {
    clear: both;
    display: table;
    content: " ";
}

.form-horizontal .form-group:before {
    display: table;
    content: " ";
    box-sizing: border-box;
}

#supportform-body {
    border-radius: 30px;
    resize: vertical;
    height: auto;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal-footer:before {
    display: table;
    content: " ";
    box-sizing: border-box;
}

.modal-body .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-left: 5px;
}

.modal-footer .btn.btn-default {
    background: #FF4747;
    border: 1px solid #FF4747;
    color: #fff;
    line-height: 20px;
    box-shadow: none;
    margin-bottom: 0;
}
.modal-footer .btn.btn-primary {
    background: #44B770 !important;
    border: 1px solid #44B770 !important;
    min-width: 0;
    line-height: 20px;
}
.modal-footer .btn:hover {
    color: #000;
}