.minLength {
    min-width: 400px;
}

.uiux-margin {
     max-width:700px;
   /* margin: 20px 20% 0 20%; */
   margin: 20px auto auto auto;  
}

ul.uiux-ul li {
    border-bottom: 1px solid #ddd;
    padding: 6px 2px 6px 16px;
}

.uiux-box {
    box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.uiux-size {
    padding: 0.01em 16px;
    padding-bottom: 16px;
    padding-top: 16px;
    background-color: #9e9e9e;
    color: #000;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.uiux-grey {
    background-color: #9e9e9e;
    color: #000;
}

.uiux-center {
    text-align: center;
}

ul.uiux-ul li {
    border-bottom: 1px solid #ddd;
    padding: 6px 2px 6px 16px;
}

ul.uiux-ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.uiux-ul li:last-child {
    border-bottom: medium none;
}

.uiux-right {
    float: right;
    cursor: pointer;
    color: red;
    font-size: 14px;
    margin-right: 16px;
}

.uiux-hover:hover {
    /* font-size:20px; */
    transform: scale(2.2);
    color: #f44336;
}

.uiux-light-grey {
    background-color: #f1f1f1 !important;
    color: #000 !important;
    padding-bottom: 16px;
    padding-top: 16px;
}

.uiux-row::after {
    clear: both;
    content: "";
    display: table;
}

.uiux-margin-top {
    margin-top: 16px;
}

.uiux-input {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: -moz-use-text-color -moz-use-text-color #808080;
    border-image: none;
    border-style: none none solid;
    border-width: medium medium 1px;
    display: block;
    padding: 8px;
    width: 100%;
    font-size: 16px;
    border: 1px solid #ccc;
}

.uiux-blue, .uiux-hover-blue:hover {
    background-color: #2196F3;
    color: #fff;
}

.uiux-btn {
    border: medium none;
    cursor: pointer;
    display: inline-block;
    outline: 0 none;
    overflow: hidden;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 17px;
}

.uiux-btn:hover {
    box-shadow: 0 16px 12px 0 rgba(0, 0, 245, 0.2), 0 25px 75px 0 rgba(0, 0, 245, 0.2);
}

.uiux-btn-bar .uiux-btn {
    background-color: inherit;
    box-shadow: none;
    color: inherit;
    float: left;
}

.uiux-col {
    float: left;
    width: 100%;
}

.uiux-col.s2 {
    width: 16%;
}

.uiux-col.s10 {
    width: 83%;
}

.uiux-text-red, .uiux-hover-text-red:hover {
    color: #f44336;
}

.uiux-padding-left {
    padding-left: 16px;
}

.uiux-padding {
    padding: 8px 16px;
}

html, body {
    font-family: Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

.uiux-ng {
    width: 37px;
    height: 37px;
    position: absolute;
    top: 40px;
    background-image: url("../img/angular.png");
    background-repeat: no-repeat;
    -webkit-transform: skew(20deg);
    transform: skew(20deg);
    font-size: 1px;
    padding: 1px;
    -webkit-animation: shake 2s infinite;
    animation: shake 2s infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;  
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: skewY(20deg);
        transform: skewY(20deg);
    }
    100% {
        -webkit-transform: skewY(-20deg);
        transform: skewY(-20deg);
    }
}

@keyframes shake {
    0% {
        -webkit-transform: skewY(20deg);
        transform: skewY(20deg);
    }
    100% {
        -webkit-transform: skewY(-20deg);
        transform: skewY(-20deg);
    }
}