﻿.hr_img {
    width: 100%;
    height: 100px;
    background: url('../../images/sun_bg2012_final4.jpg') right no-repeat;
}


.hr-btn-resp {
    position: relative;

    margin-top: 0px;
    margin-left: 10px;
    overflow: hidden;

    border-width: 0;
    outline: none;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .6);

    background-color: #FF9800;
    color: white;

    padding: 0 16px 0 16px;
    text-transform: uppercase;
    min-width: 64px;
    height: 36px;
    border-radius: 4px;

    transition: background-color .3s;

    
    font-weight: 500;
}

.hr-btn-resp:hover {
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
    background-color: #e68a00;
    transition: .2s;
}

.hr-btn-resp:before {
  content: "";
  
  position: absolute;
  top: 50%;
  left: 50%;
  
  display: block;
  width: 0;
  padding-top: 0;
    
  border-radius: 100%;
  
  background-color: rgba(236, 240, 241, .3);
  
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hr-btn-resp:active:before {
  width: 120%;
  padding-top: 120%;
  transition: width .2s ease-out, padding-top .2s ease-out;
}

.hr-input {
    padding: 20px 6px !important;
}


.hr-view-title {
    font-size: medium;
    font-weight: bold;
    margin: 10px;
}

@media(max-width: 640px) {

    .hr-btn-resp {
        width: 100%;
        margin-top: 5px;
        margin-left: 0px;
    }
}


.lds-roller {
  display: inline-block;

  width: 80px;
  height: 80px;

  margin-bottom: 40px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: black;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hr-modal {
    max-width: 500px;
    animation: slideIn 0.2s;
}
@keyframes slideIn {
    0% {
        transform: translateY(-120px)
    }
    100% {
        transform: translateY(0px);
    }
}
.modal-content .hr-header {
    display: flex;
    justify-content: center;
    background-color: #607d8b;
}

.hr-header h4 {
    color: white;
}

.modal-content .hr-body {
    display: flex;
    flex-direction: column;
    padding: 3rem;
    font-size: 1.5rem;
    font-weight:400;
    line-height: 1.5;
    color: black;
}

.hr-body .description {
    text-align: center;
}
.hr-body .vr {
    width: 100%;
}


.hr-inputs {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 640px) {
    .hr-buttons {
        flex-direction: column;
    }
    .hr-buttons * {
        width: 100%;
    }
}
.input-notif {
    margin-left: 40px;
    margin-right: auto;
}
.hr-close {
    position: absolute;
    top: 5px;
    right: 10px;
}

.hr-buttons {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.hr-btn-resp-lg {
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.3333333;
    height: 42px;
}

#identifier-input {
    width: 80%;
}

#identifier-type {
    font-size: 1rem;
    font-weight:400;
    opacity: 0.6;
    color: black;
}

@media (max-width: 640px) {
    .login-buttons {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .login-buttons * {
        width: 100%;
    }
}

.hr-modal .modal-content {
    border-radius: 8px;
}