/* Resume Box
---------------------*/
:root {
  --colheight: 100px;
  --colmargin: 5px;
}
.element {
  height: var(--height); /* Each element has the base height */
  margin: var(--margin); /* Each element has the base margin */
  padding: 10px;
}

.right .element {
  /* The right-hand element has [element_count] times as much height 
  and [element_count + 1] times as much margin */
  height: calc((var(--height) * 3) + ((var(--margin) * (3 + 1))));
}
.resume-box {
  background: #ffffff;
  box-shadow: 0 0 1.25rem rgba(31, 45, 61, 0.08);
  border-radius: 10px;
}
.resume-box ul:not(#skill) {
  margin: 0;
  padding: 30px 20px;
  list-style: none;
}
.resume-box #skill{
    list-style: none;
    font-size:12px;
    padding-left:1rem !important;
}
.resume-box ul li:not(.skill-li) {
  position: relative;
  padding: 0 20px 0 60px;
  margin: 0 0 30px;
}
.resume-box ul li:last-child {
  margin-bottom: 0;
}
.resume-box ul li:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 20px;
  border-left: 1px dashed #00ced1;
  bottom: 0;
}
.resume-box #skill li:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 20px;
  border-left:1px solid white  !important;
  bottom: 0;
}
.resume-box .icon {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  right: 0;
  color: #00ced1;
  line-height: 40px;
  background: #ffffff;
  text-align: center;
  z-index: 1;
  border: 1px dashed;
  border-radius: 50%;
}
.resume-box .time {
  background: #00ced1;
  color: #ffffff;
  font-size: 10px;
  padding: 2px 10px;
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 20px;
  font-weight: 600;
}
.resume-box h5 {
  font-weight: 700;
  color: #20247b;
  font-size: 16px;
  margin-bottom: 10px;
}
.resume-box p {
  margin: 0;
}

.resume-box ul li:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 20px;
    border-left: 1px dashed #00ced1;
    bottom: 0;
}
#resume .card{
    box-shadow: 0 0 1.25rem rgba(31, 45, 61, 0.08);
    border: none;
    border-radius: 10px;
}
.section-title h5{
    font-weight: 700;
    color: black;
    font-size: 16px;
    margin-bottom: 10px;
}
#resume p{
    font-size:13px;
}
#resume .circular--portrait{
    float:left !important;
    padding: 0px 15px 0px 0px;
    height:auto !important;
}
#resume .circular--portrait .image-wrapper img{
    padding-bottom:0px !important;
}
.element .resume-box{
    height:100%;
}
.element .times{
    font-size:12px;
}
@media all {
    .page-break { display: none; }
}

@media print {
    .page-break { display: block; }
}

/** Drag and drop file **/
.drag-image{
  border: 1px dashed #00ced1;
  height: 300px;
  width: 100%;
  border-radius: 5px;
  font-weight:400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.drag-image.active{
  border: 2px solid #00ced1;
}
.drag-image .icon{
  font-size: 30px;
  color: black;
}
.drag-image h6{
  font-size: 20px;
  font-weight: 300;
  color: #000;
}
.drag-image span{
  font-size: 14px;
  font-weight: 300;
  color: #000;
  margin: 10px 0 15px 0;
}
.drag-image button{
  padding: 10px 25px;
  font-size: 14px; 
  font-weight: 300;
  border: none;
  outline: none;
  background:transparent;
  color: #000;
  border:1px solid #00ced1;
  border-radius: 5px;
  cursor: pointer;
  transition:all 0.5s;
}

.drag-image button:hover{
    background-color:#000;
    color:white;
}

.drag-image iframe{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  border:none !important;
}
#resume-upload-btn{
    display:none;
}
.circular--portrait:not(.upload) img {
  position: relative;
  width: 120px;
  height: 120px;
  overflow: hidden;
  /*border-radius: 50%;*/
}

.circular--portrait .image-wrapper {
  width: 100%;
  height: 100%;
  /* border: 5px solid #dfdfdf;  */
  box-sizing: border-box;
  /*border-radius: 50%;*/
  overflow: hidden;
}

.circular--portrait .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  /*border-radius: 50%;*/
  padding-bottom: 20px; 
}
.upload{
  width: 125px;
  position: relative;
  margin: auto;
}

.upload img{
  /* border-radius: 50%;
  border: 8px solid #DCDCDC; */
}

.upload .round{
  position: absolute;
  top: -11px;
  right: -82px;
  background: #00ced1bd;
  width: 30px;
  height: 30px;
  line-height: 31px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
}

.upload .round input[type = "file"]{
  position: absolute;
  transform: scale(2);
  opacity: 0;
}

input[type=file]::-webkit-file-upload-button{
    cursor: pointer;
}
